Roleplay Scripting [HELP]
#1

Hey,

I have just started scripting my Roleplay server and would like to know how to add /b /ooc /l. Also how to add /cuff and /tazer

Please make the tazer equip the colt.45 silenced.

Thanks
Reply
#2

https://sampforum.blast.hk/showthread.php?tid=187229

Took me 5 seconds to find it, and...

Learn from other scripts, we ain't gunna do your spoon-feeding, read the tutorials.
Reply
#3

SA-MP WIKIIIIIIIIIIIIIIIIIIIIIIIII
Reply
#4

Local OOC:

pawn Code:
CMD:l(playerid,params[])
{
    new n[24],string[128];
    GetPlayerName(playerid,n,24);
    new Float:x,Float:y,Float:z;
    GetPlayerPos(playerid,x,y,z);
    for(new i=0;i<MAX_PLAYERS;i++)
    {
        if(IsPlayerInRangeOfPoint(i,10,x,y,z))
        {
            format(string,128,"((Local OOC: %s: %s ))",n,params);
            SendClientMessage(i,0xFFFFFFFF,string);
        }
    }
    return 1;
}
Reply


Forum Jump:


Users browsing this thread: 3 Guest(s)