Admin System WITHOUT registration system - 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)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Admin System WITHOUT registration system (
/showthread.php?tid=81208)
Admin System WITHOUT registration system -
steven_italy - 08.06.2009
im looking for a good fs admin system with cool commands but that work only with rcon admins, and not with a registration system (my gm alrady got a regisration system). in filterscript forum i fount nothing...any suggestion?
Re: Admin System WITHOUT registration system -
yezizhu - 09.06.2009
DIY.
You can edit admin level check to IsPlayerAdmin.eg:[PAWN[
if(PlayerInfo[playerid][pAdminLevel] >= 1)
//to
if(IsPlayerAdmin)
Re: Admin System WITHOUT registration system -
Correlli - 09.06.2009
Quote:
Originally Posted by yezizhu
DIY.
You can edit admin level check to IsPlayerAdmin.eg:[PAWN[
if(PlayerInfo[playerid][pAdminLevel] >= 1)
//to
if(IsPlayerAdmin)
|
pawn Код:
if(IsPlayerAdmin(playerid))
..would be better.
Re: Admin System WITHOUT registration system -
steven_italy - 09.06.2009
anyone can help me in this?
Re: Admin System WITHOUT registration system -
Vince - 09.06.2009
- Open script
- Go to Edit => Search and Replace
- Type the var for adminlevel in the search (e.g. PlayerInfo[playerid][pAdmin])
- Type IsPlayerAdmin(playerid) in the replace
- Click search.
Re: Admin System WITHOUT registration system -
JoeDaDude - 09.06.2009
Quote:
Originally Posted by Vince
- Open script
- Go to Edit => Search and Replace
- Type the var for adminlevel in the search (e.g. PlayerInfo[playerid][pAdmin])
- Type IsPlayerAdmin(playerid) in the replace
- Click search.
|
Ok maybe you should read,
If he did that, The registration system will still be there,
Which he does not want
Re: Admin System WITHOUT registration system -
BP13 - 09.06.2009
Quote:
Originally Posted by JoeDaDude
Quote:
Originally Posted by Vince
- Open script
- Go to Edit => Search and Replace
- Type the var for adminlevel in the search (e.g. PlayerInfo[playerid][pAdmin])
- Type IsPlayerAdmin(playerid) in the replace
- Click search.
|
Ok maybe you should read,
If he did that, The registration system will still be there,
Which he does not want
|
well if its in the GM he can easilly search for the lines and get rid of them
Re: Admin System WITHOUT registration system -
steven_italy - 09.06.2009
Quote:
Originally Posted by Vince
- Open script
- Go to Edit => Search and Replace
- Type the var for adminlevel in the search (e.g. PlayerInfo[playerid][pAdmin])
- Type IsPlayerAdmin(playerid) in the replace
- Click search.
|
done. Result? only a lots of error
Re: Admin System WITHOUT registration system -
Burridge - 09.06.2009
http://forum.sa-mp.com/index.php?topic=27726.0
Re: Admin System WITHOUT registration system -
steven_italy - 09.06.2009
Quote:
Originally Posted by Mike_Logan
|
love u