01.02.2009, 17:02
Here if i understand you correct you mean this,
And for Admin off simple.
Change the adminoff playerid to the skin you want.
Hope it help's if i got what you ment correct.
But you just have to basicly edit that on your admin on and off command,
Becuase you will need to put it in the admin script and then also put a function in.
Code:
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp("/adminon", cmdtext, true, 10) == 0)
{
SetPlayerSkin(playerid,294)
return 1;
}
Code:
public OnPlayerCommandText(playerid, cmdtext[])
{
if (strcmp("/adminoff", cmdtext, true, 10) == 0)
{
SetPlayerSkin(playerid,1)
return 1;
}
Hope it help's if i got what you ment correct.
But you just have to basicly edit that on your admin on and off command,
Becuase you will need to put it in the admin script and then also put a function in.

