[FilterScript] Discord Admin Control Panel - Manage players through discord!
#12

U should change this:
Code:
    for(new i=0; i < MAX_PLAYERS; i++) {
    GetPlayerName(i, name, MAX_PLAYER_NAME);
    if(!IsPlayerConnected(i)) continue;
To this:
Code:
    for(new i=0; i < MAX_PLAYERS; i++) {
    if(!IsPlayerConnected(i)) continue;
    GetPlayerName(i, name, MAX_PLAYER_NAME);
Also do you realize that this:
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); }
Is going to send 500 discord messages if the server is busy enough? I'd suggest grouping it all up in one string and sending one message or at least do so by checking the amount of online players?

One last thing is this:
Code:
GetPlayerName(giveplayerid, giveplayer, MAX_PLAYER_NAME);
It is for the best always using the sizeof the varible you're storing the name in regardless if MAX_PLAYER_NAME is the same just for compatibility cautiousness in this case and all other cases seeing as if the size of that variable's array ever changes it will lead into problems.

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.
Reply


Messages In This Thread
Discord Admin Control Panel - Manage players through discord! - by Exhibit - 19.06.2018, 18:35
Re: Discord Admin Control Panel - Manage players through discord! - by RxErT - 19.06.2018, 18:45
Re: Discord Admin Control Panel - Manage players through discord! - by Exhibit - 19.06.2018, 18:54
Re: Discord Admin Control Panel - Manage players through discord! - by JeSuisUnChat - 06.07.2018, 10:16
Re: Discord Admin Control Panel - Manage players through discord! - by Akeem - 06.07.2018, 13:48
Re: Discord Admin Control Panel - Manage players through discord! - by BanSilog - 06.07.2018, 19:21
Re: Discord Admin Control Panel - Manage players through discord! - by Crystallize - 06.07.2018, 20:01
Re: Discord Admin Control Panel - Manage players through discord! - by Ultraz - 06.07.2018, 20:11
Re: Discord Admin Control Panel - Manage players through discord! - by AzaMx - 07.07.2018, 06:11
Re: Discord Admin Control Panel - Manage players through discord! - by RogueDrifter - 07.07.2018, 06:38
Re: Discord Admin Control Panel - Manage players through discord! - by Exhibit - 07.07.2018, 14:47
Re: Discord Admin Control Panel - Manage players through discord! - by RogueDrifter - 07.07.2018, 19:19
Re: Discord Admin Control Panel - Manage players through discord! - by Exhibit - 07.07.2018, 20:17
Re: Discord Admin Control Panel - Manage players through discord! - by Akeem - 08.07.2018, 05:01
Re: Discord Admin Control Panel - Manage players through discord! - by Exhibit - 08.07.2018, 09:51
Re: Discord Admin Control Panel - Manage players through discord! - by Exhibit - 28.07.2018, 15:15
Re: Discord Admin Control Panel - Manage players through discord! - by Ogisa - 28.07.2018, 21:23
Re: Discord Admin Control Panel - Manage players through discord! - by AzaMx - 19.08.2018, 01:54
Re: Discord Admin Control Panel - Manage players through discord! - by Danielknow - 15.09.2018, 09:35
Re: Discord Admin Control Panel - Manage players through discord! - by NikhilMeena - 15.09.2018, 14:54

Forum Jump:


Users browsing this thread: 1 Guest(s)