Help with /warp command - 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: Help with /warp command (
/showthread.php?tid=74211)
Help with /warp command -
Jakku - 20.04.2009
I have following warp cmd. I want to that a message, when the player I warped, get a message: Admin has warped to your position, where in that i must put it and what could I put?
Код:
Command code removed - Jakku
Re: Help with /warp command -
Rks25 - 20.04.2009
Here you go.
pawn Код:
//place this below //SendClientMessage(playerid, COLOUR_PERSONAL, "Warp Is Done.");
new string[128], player[MAX_PLAYER_NAME];
GetPlayerName(playerid, player, sizeof(player));
format(string, sizeof(string), "* %s (id: %d) warped to your position.", player,playerid);
SendClientMessage(warptoid, COLOR_COLOR, string);
Re: Help with /warp command -
Jakku - 21.04.2009
Thanks