WolfieBlood
Veteran
- Messages
- 3
- Reaction score
- 0
- Points
- 776
I'm kinda new to coding but I'm making a bo2 mod menu, in it i want the next to change from off to on or back to off but I'm not sure how or if i even can.
I've tried this:
but it stays as off 
I've tried this:
Code:
if(self.god == false)
{
self add_option("mainMods", "God Mode ^1OFF^7", ::godMode);
}
else
if(self.god == true)
{
self add_option("mainMods", "God Mode ^2ON^7", ::godMode);
}