Posts: 120
Threads: 19
Joined: Oct 2011
Reputation:
0
hi guys i downloaded Ladmin (V2) for my SAMP server! its the last thing after that i will host it but... this ladmin is awesomest but when i re-log with any other ip it doesn't requires login i mean people can use other's account and they can just FLOOD/SPAM with that so... any this from which it asks for login or u can say a MUST LOGIN so thanks for your help!
Posts: 305
Threads: 80
Joined: May 2010
Reputation:
0
I suggest not using an administration filterscript. Just try making your own, there are plenty of tutorials out there, so you can make it to meet your servers requirments. Downloaded administration scripts usually have bugs in them sue to script conflicts anyway.
Jack_Rocker
Posts: 120
Threads: 19
Joined: Oct 2011
Reputation:
0
well it is now working fine!! all i need now is /aduty CMD! :/
Posts: 120
Threads: 19
Joined: Oct 2011
Reputation:
0
dcmd_duty(playerid,params[])
{
new string[128];
new aname[MAX_PLAYER_NAME];
if(!IsPlayerAdmin(playerid)) return 0;
GetPlayerName(playerid,aname,sizeof(aname));
format(string,sizeof(string),"Administrator %s is now on Duty",aname,playerid);
SendClientMessage(playerid, COLOR_RED, string);
SetPlayerColor(playerid, 0xFFFF00AA)
SetPlayerSkin(playerid, 217)
SetPlayerArmour(playerid,999999);
SetPlayerHealth(playerid,999999);
return 1;
}
guys this is the CMD which i want but it doesnt work!! it gives warning!
and when i try it in game it doesn't work whats the problem?