HELP ME.If you help +1 REP - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: HELP ME.If you help +1 REP (
/showthread.php?tid=370768)
HELP ME.If you help +1 REP -
[SU]Spartan - 21.08.2012
Hello people im tryying to find an admin system with no pluglin.if you find for me iwill give you level 1 to my server and +1 rep
Re: HELP ME.If you help +1 REP -
JaKe Elite - 21.08.2012
OMG.
You amazed me.
There is no available admin system that doesn't contain plugin.
Re: HELP ME.If you help +1 REP -
Akira297 - 21.08.2012
All Administration Scripts require some form of Plugin.
Re: HELP ME.If you help +1 REP -
Lordzy - 21.08.2012
Possible if you want to do me cmds
Without setlevel or stuff.
Example :
pawn Код:
#define red 0xFF0000
new adm1[MAX_PLAYERS];
//This requires zcmd inc if making in CMD:way
CMD:makemeadm1(playerid,params[])
{
#pragma unused params
adm1[playerid]=1;
SendClientMessage(playerid,red,"Adm level 1");
return 1;
}
CMD:healme(playerid,params[])
{
#pragma unused params
if(adm1[playerid] == 1)
return SendClientMessage(playerid,red,"you must be an admin");
SetPlayerHealth(playerid,100.00);
return 1;
}
Like this you can make if you want
Re: HELP ME.If you help +1 REP -
Ranama - 21.08.2012
lol, it is to hard to install a include? xD
Re: HELP ME.If you help +1 REP -
JaKe Elite - 21.08.2012
Lordz.
No, its not an admin system.
You are just setting the global variable.
How you gonna save it?, don't tell me you will use the file.inc
which is came up with SAMP Server Package tool. its slow. i don't recommend you to use it.
Re: HELP ME.If you help +1 REP -
Lordzy - 21.08.2012
I just gave him a type of script which performs like rcon but not having full functions of Rcon admin.
But for an Admin script includes and plugins are needed.