delete -
iKevin - 31.03.2016
delete
Re: Burke's Admin System [v1.0a] - Based on OnPlayerClickPlayer (Simple) -
Rustin - 31.03.2016
Add some more cmds. It'd be great.
Re: Burke's Admin System [v1.0a] - Based on OnPlayerClickPlayer (Simple) -
iKevin - 31.03.2016
Quote:
Originally Posted by Rustin
Add some more cmds. It'd be great.
|
I'm planning to do so, just if you'd like to see some specified ones, post them here, and I'll consider adding them the next update.
Thanks,
~Kevin
Re: Burke's Admin System [v1.0a] - Based on OnPlayerClickPlayer (Simple) -
K0P - 31.03.2016
Its an admin system with only 300 lines,expected more than that,you should make commands for the functions too (eg. /kick /ban)
Re: Burke's Admin System [v1.0a] - Based on OnPlayerClickPlayer (Simple) -
iKarim - 31.03.2016
PHP код:
new string[1000];
strcat(string, "This is server is using Burke's Admin System by Kevin_Burke(KevinExec)!\n");
ShowPlayerDialog(playerid, DIALOG_CONNECT, DIALOG_STYLE_MSGBOX, "{00FF00}Welcome", string, "Close", "");
Why 1000 cells for this 80 cells string? Good work anyways.
Re: Burke's Admin System [v1.0a] - Based on OnPlayerClickPlayer (Simple) -
iKevin - 31.03.2016
@K0P; Point of the system is that it's not commands but dialogs, if you cant read.
@PawnHunter; I usually use 1000 cells, don't know.
Re: Burke's Admin System [v1.0a] - Based on OnPlayerClickPlayer (Simple) -
Yashas - 04.04.2016
Quote:
Originally Posted by PawnHunter
PHP код:
new string[1000];
strcat(string, "This is server is using Burke's Admin System by Kevin_Burke(KevinExec)!\n");
ShowPlayerDialog(playerid, DIALOG_CONNECT, DIALOG_STYLE_MSGBOX, "{00FF00}Welcome", string, "Close", "");
Why 1000 cells for this 80 cells string? Good work anyways.
|
LOL why do you even need a string?
Код:
ShowPlayerDialog(playerid, DIALOG_CONNECT, DIALOG_STYLE_MSGBOX, "{00FF00}Welcome", "This is server is using Burke's Admin System by Kevin_Burke(KevinExec)!\n", "Close", "");
Re: Burke's Admin System [v1.0a] - Based on OnPlayerClickPlayer (Simple) -
iKevin - 04.04.2016
Quote:
Originally Posted by Yashas
LOL why do you even need a string?
Код:
ShowPlayerDialog(playerid, DIALOG_CONNECT, DIALOG_STYLE_MSGBOX, "{00FF00}Welcome", "This is server is using Burke's Admin System by Kevin_Burke(KevinExec)!\n", "Close", "");
|
Easier.
Re: Burke's Admin System [v1.0a] - Based on OnPlayerClickPlayer (Simple) -
AndySedeyn - 04.04.2016
Quote:
Originally Posted by Yashas
LOL why do you even need a string?
Код:
ShowPlayerDialog(playerid, DIALOG_CONNECT, DIALOG_STYLE_MSGBOX, "{00FF00}Welcome", "This is server is using Burke's Admin System by Kevin_Burke(KevinExec)!\n", "Close", "");
|
Quote:
Originally Posted by KevinExec
Easier.
|
I fixed that in my first pull request on GitHub:
https://github.com/KevinExec/SA-MP/c...0ff6310a294f82
Re: Burke's Admin System [v1.0a] - Based on OnPlayerClickPlayer (Simple) -
DarkLored - 04.04.2016
Quote:
Originally Posted by KevinExec
Easier.
|
This is just a joke... how are you going to advance if you only take the easy way?