0 Members and 2 Guests are viewing this topic.
else if (strcmp(cmd, "back", true) == 0) { new name[20], string[128]; GetPlayerName(playerid, name, 20); format(string, sizeof(string), "%s, Is Back!", name); SendClientMessageToAll(COLOR_GREEN, string); return 1; }
GetPlayerName(playerid, name, 20);
else if (strcmp(cmd, "back", true) == 0) { new string[128]; format(string, sizeof(string), "%s, Is Back!", gPlayers[playerid]); SendClientMessageToAll(COLOR_GREEN, string); return 1;
Quote else if (strcmp(cmd, "back", true) == 0) { new name[20], string[128]; GetPlayerName(playerid, name, 20); format(string, sizeof(string), "%s, Is Back!", name); SendClientMessageToAll(COLOR_GREEN, string); return 1; }He is using GUPS so he didn't needQuote GetPlayerName(playerid, name, 20);he can use gPlayers[playerid] Quoteelse if (strcmp(cmd, "back", true) == 0) { new string[128]; format(string, sizeof(string), "%s, Is Back!", gPlayers[playerid]); SendClientMessageToAll(COLOR_GREEN, string); return 1;