[FilterScript] Advance Fishing System [Y_INI][fFish]
#9

Whats so advance in it?


Wrong Grammar:
Code:
SendClientMessage( playerid, -1 ,""fc"[FISHING]"wc" You have succesfully selled a Very Big Fish!");
It Should Be:
Code:
SendClientMessage( playerid, -1 ,""fc"[FISHING]"wc" You have succesfully sold a Very Big Fish!");
Why 250 cells?
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;
}
Why not?:

Code:
Root(playerid)
{
    new string[128];
    format(string,sizeof(string),FOLDER,GetName(playerid));
    return string;
}
And 128 cells for a small line?



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;
}
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)