Skip to content
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Donate
Collapse

Plutonium

  1. Home
  2. BO2 Modding Support & Discussion
  3. Little scripting help plz

Little scripting help plz

Scheduled Pinned Locked Moved BO2 Modding Support & Discussion
1 Posts 1 Posters 92 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • annoyingundefined Offline
    annoyingundefined Offline
    annoying
    wrote on last edited by
    #1

    I'm trying to change this function to notify myself when someone uses godmode but it's throwing errors on compile

    Toggle_God()
    {
    	if(self.God==false)
    	{
    		self iPrintln("GodMod [^2ON^7]");
    		self.maxhealth=999999999;
    		self.health=self.maxhealth;
    		if(self.health<self.maxhealth)self.health=self.maxhealth;
    		self enableInvulnerability();
    		self.godenabled=true;
    		self.God=true;
    	}
    	else
    	{
    		self iPrintln("GodMod [^1OFF^7]");
    		self.maxhealth=100;
    		self.health=self.maxhealth;
    		self disableInvulnerability();
    		self.godenabled=false;
    		self.God=false;
    	}
    }
    
    
    

    Before edit ^ (works perfectly but doesn't notify)
    After edit ↓ (errors on compile)

    Toggle_God()
    {
        foreach (player in level.players)
    	{
    		if (player.name == "Annoying")
    		{
    			player iprintln( self "GodMod [^2ON^7]");
    		}
    	}
    	if(self.God==false)
    	{
    		self iPrintln("GodMod [^2ON^7]");
    		self.maxhealth=999999999;
    		self.health=self.maxhealth;
    		if(self.health<self.maxhealth)self.health=self.maxhealth;
    		self enableInvulnerability();
    		self.godenabled=true;
    		self.God=true;
    	}
    	else
    	{
    		self iPrintln("GodMod [^1OFF^7]");
    		self.maxhealth=100;
    		self.health=self.maxhealth;
    		self disableInvulnerability();
    		self.godenabled=false;
    		self.God=false;
    	}
    }
    
    
    

    I'd appreciate help here because I can't figure this out.

    1 Reply Last reply
    0

    • Login

    • Don't have an account? Register

    • Login or register to search.
    • First post
      Last post
    0
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Donate