07.07.2018, 20:17
Quote:
U should change this:
Code:
for(new i=0; i < MAX_PLAYERS; i++) { GetPlayerName(i, name, MAX_PLAYER_NAME); if(!IsPlayerConnected(i)) continue; Code:
for(new i=0; i < MAX_PLAYERS; i++) { if(!IsPlayerConnected(i)) continue; GetPlayerName(i, name, MAX_PLAYER_NAME); Code:
for(new i=0; i < MAX_PLAYERS; i++) { GetPlayerName(i, name, MAX_PLAYER_NAME); if(!IsPlayerConnected(i)) continue; SendDC(CHANNEL_ID, "```%s(%d)```", name, i); } One last thing is this: Code:
GetPlayerName(giveplayerid, giveplayer, MAX_PLAYER_NAME); Nevertheless, there isn't much to look at seeing as its a small script, it's a cool idea lots of the effort done was put into the include&plugin that's for sure but it's different so good job to you, Inn0cent and maddinat0r. |