help me someone for this problem
#1

i have create a server at samp and i dont know to put commands in my server.
Reply
#2

same here
Reply
#3

Quote:
Originally Posted by Berti
i have create a server at samp and i dont know to put commands in my server.
You have to script them, here's an example.

pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
    if (strcmp("/test", cmdtext, true, 10) == 0)
    {
        SendClientMessage(playerid,0xFFFFFFAA,"This was a test");
        return 1;
    }
    return 0;
}
Check wiki.sa-mp.com for some tutorials.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)