12.06.2012, 15:16
yes just keep track of their skin before you change it,
something like that, i wrote the code write in the browser so test it.
pawn Код:
new gPlayerSkin[MAX_PLAYERS];
//in the OnPlayerDeath callback use
gPlayerSkin[playerid] = GetPlayerSkin(playerid);
//then restore it when they leave the hostipal with
SetPlayerSkin(playerid,gPlayerSkin[playerid]);
something like that, i wrote the code write in the browser so test it.