16.11.2009, 23:35
ok right say a player does this
i would like this part to format(tString, sizeof(tString), "(News) %s has teleported to drift",tString); echo back in irc but im not sure how to do it
thanks
Код:
dcmd_drift(playerid, params[]) { new tString[80]; GetPlayerName(playerid, tString, MAX_PLAYER_NAME); SetPlayerPos(playerid,-307.062805,1538.853515,78.099159); format(tString, sizeof(tString), "(News) %s has teleported to drift do /drift to join",tString); SendClientMessageToAll(COLOR_BLUEAQUA, tString); GameTextForPlayer(playerid,"Welcome to drift",2500,3); #pragma unused params return 1; }
thanks