28.08.2016, 09:00
Whats so advance in it?
Wrong Grammar:
It Should Be:
Why 250 cells?
And this:
Why not?:
And 128 cells for a small line?
Wrong Grammar:
Code:
SendClientMessage( playerid, -1 ,""fc"[FISHING]"wc" You have succesfully selled a Very Big Fish!");
Code:
SendClientMessage( playerid, -1 ,""fc"[FISHING]"wc" You have succesfully sold a Very Big Fish!");
Code:
public OnPlayerEnterDynamicCP(playerid, checkpointid) { new string[250]; if(checkpointid == FishCP)
And this:
Code:
Root(playerid) { new string[128],playername[MAX_PLAYER_NAME]; GetPlayerName(playerid,playername,sizeof(playername)); format(string,sizeof(string),FOLDER,playername); return string; }
Code:
Root(playerid) { new string[128]; format(string,sizeof(string),FOLDER,GetName(playerid)); return string; }
Code:
public tLeft(playerid) { timeleft[playerid]--; new string[128]; format(string, 128, "~r~TIME LEFT ~b~: %d", timeleft[playerid]); GameTextForPlayer(playerid, string , 900, 3); if (timeleft[playerid] == 1) { KillTimer(timer[playerid]); } return 1; }