SA-MP Forums Archive
somecommand - 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: somecommand (/showthread.php?tid=89792)



somecommand - nuriel8833 - 04.08.2009

how can i do that if player is doing any command it will change his name to a random name from a list
and ofcurse a command who returnes playername


Re: somecommand - saiberfun - 04.08.2009

ask here http://forum.sa-mp.com/index.php?topic=113839.0


Re: somecommand - speedruntrainer - 04.08.2009

A player can set his name using the SetPlayerName function but random I don't know :/


Re: somecommand - Jefff - 04.08.2009

Код:
new Names[5][13] = {
"dfgdhg",
"fgjghj",
"asedad",
"lkhgghj",
"dfgsfzawr"
};
Код:
SetPlayerName(playerid, Names[random(6)]);



Re: somecommand - nuriel8833 - 04.08.2009

tanks , you can lock