Results 1 to 2 of 2

Thread: Need Help Error

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #1
    Private
    Join Date
    Feb 2013
    Posts
    11
    Thanks
    3
    Thanked 1 Time in 1 Post

    Need Help Error

    ******* script compile error *******
    bad syntax: (file 'maps/mp/gametypes/_tdm.gsc', line 251)
    {
    *
    ************************************

    The Line ;

    Code:
    {
    	if(!level.splitscreen)
    		iprintln(&"MP_DISCONNECTED", self);
    
    	if(isdefined(self.pers["team"]))
    	{
    		if(self.pers["team"] == "allies")
    			setplayerteamrank(self, 0, 0);
    		else if(self.pers["team"] == "axis")
    			setplayerteamrank(self, 1, 0);
    		else if(self.pers["team"] == "spectator")
    			setplayerteamrank(self, 2, 0);
    	}
    
    	
    	lpselfnum = self getEntityNumber();
    	lpGuid = self getGuid();
    	logPrint("Q;" + lpGuid + ";" + lpselfnum + ";" + self.name + "\n");
    }
    Last edited by AzreaL; 6th February 2013 at 21:27.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •