04.10.2012, 05:57
the following is the line that decides at what admin level you can read all the PM. They are under "OnPlayerPrivmsg".
if you want to change that level, you have to change "ServerInfo[MaxAdminLevel]" to the minimum admin level you want to be able to read all the PM. So if you want all the admins to be allowed to read the PM change the above line to:
PHP код:
if(IsPlayerConnected(a) && (AccInfo[a][Level] >= ServerInfo[MaxAdminLevel]) && a != playerid)
PHP код:
if(IsPlayerConnected(a) && (AccInfo[a][Level] >= 1) && a != playerid)