SA-MP Forums Archive
/safe - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: /safe (/showthread.php?tid=86794)



Resolved. - WoodPecker - 16.07.2009

Resolved.


Re: /safe - MenaceX^ - 16.07.2009

Search, or just take a bank script and change the commands.


Re: /safe - saiberfun - 16.07.2009

or ask in the script requestthread


Re: /safe - Anarkien - 16.07.2009

pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
    if (strcmp("/safehelp", cmdtext, true, 9) == 0)
    {
        SendClientMessage(playerid,COLOR,"/safebalance,/safedeposit,/safewithdraw");
        return 1;
    }
    return 0;
}
For example.


Re: /safe - WoodPecker - 16.07.2009

tnx guys