Edited Title - Please don't use Capital letters ConstantlyHey guys could you help me please im using a few codes from my old menu to his new menu base and my god mode aint working please help thanks!
this is the video with the menu base im using:
InfiniteHealth(print)
{
self.InfiniteHealth = booleanOpposite(self.InfiniteHealth);
if(print) self iPrintln(booleanReturnVal(self.InfiniteHealth, "God Mode ^1Off", "God Mode ^2On"));
if(self.InfiniteHealth)
self enableInvulnerability();
else
if(!self.menu.open)
self disableInvulnerability();
}
"Godmode", ::InfiniteHealth, true);
that should workthis is the code i previously use?
ToggleGod()
{
if(self.God==false)
{
self iPrintln("God Mode: ^0ON");
self enableInvulnerability();
self.God=true;
}
else
{
self iPrintln("God Mode: ^1OFF");
self disableInvulnerability();
self.God=false;
}
}
it doesnt tho
Works for me. Something is up with your menuthat should work
Use Candy's code he provided.it doesnt tho
Are booleanOpposite and booleanReturnVal default functions? If not you should add them to the code, it won't work without themCode:InfiniteHealth(print) { self.InfiniteHealth = booleanOpposite(self.InfiniteHealth); if(print) self iPrintln(booleanReturnVal(self.InfiniteHealth, "God Mode ^1Off", "God Mode ^2On")); if(self.InfiniteHealth) self enableInvulnerability(); else if(!self.menu.open) self disableInvulnerability(); }
Code:"Godmode", ::InfiniteHealth, true);
If you don't know what that is, and you're having trouble getting God Mode to work, i don't know why you're making a menu. Just saying...i have no idea what that is sorry man
See : Menu Offnen and Shliesenno idea mate could we screenshare on skype plz so i could show you? thanks VC