Question + Help
#1

A way to change everyones skins to a certain skin, except for yours

and to change everyones skin back to they original skin
Reply
#2

Like /setskinall?
Reply
#3

pawn Код:
new LastSkin[MAX_PLAYERS];
pawn Код:
//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]);
pawn Код:
//To change back:
for(new i=0; i<MAX_PLAYERS; i++) {
SetPlayerSkin(i, LastSkin[i]);
}
Reply
#4

thanks g
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)