ZCMD Command, 1 warning :P look plz
#1

Код:
D:\VERY IMPORTANT STUFF\SA-MP Scripts\EL-RP\gamemodes\el-rp.pwn(50185) : warning 203: symbol is never used: "command"
Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase

Header size:          11320 bytes
Code size:          1961800 bytes
Data size:         27013732 bytes
Stack/heap size:      16384 bytes; estimated max. usage: unknown, due to recursion
Total requirements:29003236 bytes

1 Warning.
THE ONLY ZCMD COMMAND IN THE SCRIPT :-
pawn Код:
command(secure, playerid[])
{
    if(GetPlayerPCash(i) <= 80)
    {
        GameTextForPlayer(playerid, "~r~You don't got the cash!~n~ ~w~ Try doing some job!", 5000, 3);
        return 1;
    }
    else if(PlayerInfo[playerid][pLSRegistered] == 1
    {
        GameTextForPlayer(playerid, "~r~You are already registered!", 5000, 3);
        return 1;
    }
    else
    {
        GameTextForPlayer(playerid, "~w~Congrats!~n~You have just registered as an~n~~r~LS Citizen", 5000, 3);
        GivePlayerPCash(playerid,-80);
        PlayerInfo[playerid][pLSRegistered] = 1;
        return 1;
    }
    return 1;
}
Reply
#2

pawn Код:
command(secure, playerid,params[])
Reply
#3

thx :P
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)