Posts: 29
	Threads: 12
	Joined: Sep 2013
	
Reputation: 
0
	 
 
	
	
		My samp CMDS not working at all...they stopped working WITHOUT ME DOING ANYTHING WTF man...........
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 29
	Threads: 12
	Joined: Sep 2013
	
Reputation: 
0
	 
 
	
	
		Is mind that server cmds are simple 
CMD: 
but i have used #include <zcmd> 
?
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 265
	Threads: 59
	Joined: Sep 2013
	
	
 
	
	
		Does your pawno compile it without any errors?
And can you show to me how do you use your ZCMD?
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 29
	Threads: 12
	Joined: Sep 2013
	
Reputation: 
0
	 
 
	
	
		I didint script the CMDS.......my PAWNO error shower CRASHES when i click COMPILE but it comples but when i run server it doesnt work plz HELP!!!!!!!
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 817
	Threads: 136
	Joined: Mar 2013
	
Reputation: 
0
	 
 
	
	
		Compiler crashing - "Aborting" the compiling.
You're probably missing a bracket..
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 265
	Threads: 59
	Joined: Sep 2013
	
	
 
	
	
		Well, if you don't know which of the CMDs causes the problem, can you give us the whole cmd list you have?
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 29
	Threads: 12
	Joined: Sep 2013
	
Reputation: 
0
	 
 
	
	
		Nope i dont use ZCMD look what  i use 
if(strcmp(cmd, "/help", true) == 0)
	{
	    if(GetPVarInt(playerid, "Logged") == 0)
		{
		    SendClientMessage(playerid, COLOR_LIGHTRED, "You are not logged in!");
		    return 1;
		}
		ShowPlayerDialog(playerid,11,DIALOG_STYLE_MSGBOX,"  Help","/buylevel /stats /help /kill /class /blockpm /g /pm","Okay","");
		return 1;
	}
	
	
	
	
		
	
 
 
	
	
	
		
	Posts: 265
	Threads: 59
	Joined: Sep 2013
	
	
 
	
	
		
pawn Код:
if(strcmp(cmd, "/help", true) == 0)
    {
        if(GetPVarInt(playerid, "Logged") == 0)
        {
            SendClientMessage(playerid, COLOR_LIGHTRED, "You are not logged in!");
        }  
        else
        {
           ShowPlayerDialog(playerid,11,DIALOG_STYLE_MSGBOX," Help","/buylevel /stats /help /kill /class /blockpm /g /pm","Okay","");
        }
        return 1;
    }
 
Hope that will do. But I'd suggest to use ZCMD, it's much more simple, and much better.