
LifeElevated
Senior Member-
Posts
766 -
Joined
-
Last visited
Everything posted by LifeElevated
-
Request your Awards & Achievements here!
LifeElevated replied to Rook's topic in Forum Announcements
https://iosgods.com/topic/42500-hill-climpage=50&tab=comments#commenb-racing-2-ios-3/?t-2476782 -
Request your Awards & Achievements here!
LifeElevated replied to Rook's topic in Forum Announcements
Can I get my famous award? I requested it months ago and I have multiple posts with over 100 pages -
Hack (NEWEST!) SimCity BuildIt [+7] [2018]
LifeElevated replied to LifeElevated's topic in Save Game Cheats
It is a game save hack, you cannot have it to yourself. Only solution is to turn on airplane mode when you play, or data for the app if you aren't connected to wifi. Not working? -
Hack (NEWEST!) SimCity BuildIt [+7] [2018]
LifeElevated replied to LifeElevated's topic in Save Game Cheats
Awesome! Muchas gracias, esta bein ! -
Hack NEW! SimCity BuildIt [+6] [2018]
LifeElevated replied to LifeElevated's topic in Save Game Cheats
The file is a save game. If you have your wifi/mobile data on it will change the name of your city because other people are also using the same save. -
Hack (NEWEST!) SimCity BuildIt [+7] [2018]
LifeElevated replied to LifeElevated's topic in Save Game Cheats
Lol bro check now, you commented -
Hack (NEWEST!) SimCity BuildIt [+7] [2018]
LifeElevated replied to LifeElevated's topic in Save Game Cheats
Just tried it again, works -
Sick bro
-
Save Game Jetpack Joyride (All Versions) (Unlimited Gold)
LifeElevated replied to Serachrono's topic in Save Game Cheats
Oh -
Hack [IGMM] Subway Surfers v1.81.0 +4 Cheats (OP)
LifeElevated replied to Mayaxaya's topic in Free Jailbreak Cheats
Imbored -
Non-Jailbroken Hack [NJB] The Trail 1.9200 +7
LifeElevated replied to Archangel04's topic in Free Non-Jailbroken IPA Cheats
Woah! -
Hack (NEWEST!) SimCity BuildIt [+7] [2018]
LifeElevated replied to LifeElevated's topic in Save Game Cheats
Hello ilovehackingames, this is happening because the save you just installed is being used by hundreds of other people. -
Request your Awards & Achievements here!
LifeElevated replied to Rook's topic in Forum Announcements
Ouch? Haha I do though -
Request your Awards & Achievements here!
LifeElevated replied to Rook's topic in Forum Announcements
Same -
Request your Awards & Achievements here!
LifeElevated replied to Rook's topic in Forum Announcements
@DiDA Requested Award: FAMOUS Proof: https://iosgods.com/topic/64625-newest-simcity-buildit-7-2018/?page=54&tab=comments#comment-2172417 -
Hack (NEWEST!) SimCity BuildIt [+7] [2018]
LifeElevated replied to LifeElevated's topic in Save Game Cheats
Second post with 50 pages of replies and still haven’t received my famous award ? -
Yes. It does.
-
Hack NEW! Plants vs Zombies 2 Hack [+7] [2018]
LifeElevated replied to LifeElevated's topic in Save Game Cheats
yes, it is just replacing a save -
Hack NEW! Plants vs Zombies 2 Hack [+7] [2018]
LifeElevated replied to LifeElevated's topic in Save Game Cheats
No Problem! -
Basic Java Question
LifeElevated replied to LifeElevated's topic in Java & Android Development's Challenges!
Honestly this is worded to weird ? -
Given two double values double1 , double2, why isn’t it reliable to test their equality using: double1 == double2; ??? Comment possible code below!! If you are the first person to get this I will follow you!! HINT:
-
If & If-Else Statements An If Statement is a conditional statement. This basically means that if the program is allowed to execute a specific set of instructions, it will but, only if that condition is met. If that condition is not met the program skips over the instructions. An example of an If Statement is as followed: public class Test { public static void main(String args[]) { int x = 15; \\initialzes an integer (x) to 15 if( x < 20 ) { System.out.print("This is if statement"); \\this prints if x is less than 20 } } } An If-Else Statement works very similarly to an If Statement. The only major difference is that if your 'if' is NOT met it goes to 'else' and runs that code in the program. Instead of skipping over the conditional. An example of an If-Else Statement is as followed: public class Test { public static void main(String args[]) { int x = 30; \\like before, declares integer to a value. In this case 30 if( x < 20 ) { //if x is less than 20 (it is not) it will run the if-clause System.out.print("This is if statement"); } else{ // if the x is greater than 20 (in this situation) it runs the else-clause System.out.print("This is else statement"); } } } Some very common errors in If and If-Else Statements could be the following: if (yourCondition); \\<< IF YOU PUT A SEMICOLON HERE IT ENDS THE STATEMENT WITHOUT READING THE ACTUAL STATEMENT { //code here } That code will result in an error! -LifeElevated