09.05.2010, 15:02
A way to change everyones skins to a certain skin, except for yours
and to change everyones skin back to they original skin
and to change everyones skin back to they original skin
new LastSkin[MAX_PLAYERS];
//Assuming you're using this in a command...
for(new i=0; i<MAX_PLAYERS; i++) {
LastSkin[i] = GetPlayerSkin(i);
SetPlayerSkin(i, ID);
}
SetPlayerSkin(playerid, LastSkin[playerid]);
//To change back:
for(new i=0; i<MAX_PLAYERS; i++) {
SetPlayerSkin(i, LastSkin[i]);
}