[Ajuda] Skin Aleatoriamente
#1

ola, queria saber se tem como eu fazer isso:
tipo quando responder o dialog, setar umas das skin Aleatoriamente que eu por aqui ?

se tiver como, e voce souber da pra postar aqui ??


Vlw !!!
Reply
#2

SetPlayerSkin(playerid, random(299));
Reply
#3

mais como que e que cria essa variavel randon(299)); ?
Reply
#4

pawn Код:
#define IsInvalidSkin(%0) ((%0 == 3 || %0 == 4 || %0 == 5 || %0 == 6 || %0 == 7 || %0 == 8 || %0 == 42 || %0 == 65 || %0 == 74 || %0 == 86 || %0 == 119 || %0 == 149 || %0 == 208 || %0 == 268 || %0 == 273 || %0 == 289)?(true):(false)) //By: iGarfield
for(new i; i < 299; ++i)
{
    if(!IsInvalidSkin(i)) continue;
    SetPlayerSkin(playerid, i);
}
o seu Ricop darб skin invбlidos tb...
Reply
#5

Isto deve resolver o seu problema .


Crйditos ao Garfield pela funзгo IsInvalidSkin .


Coloque:


pawn Код:
//No Final do GM:

#define IsInvalidSkin(%0) ((%0 == 3 || %0 == 4 || %0 == 5 || %0 == 6 || %0 == 7 || %0 == 8 || %0 == 42 || %0 == 65 || %0 == 74 || %0 == 86 || %0 == 119 || %0 == 149 || %0 == 208 || %0 == 268 || %0 == 273 || %0 == 289)?(true):(false)) //By: iGarfield


stock SkinRandom()
{
    new skin = random(299);
    if(IsInvalidSkin(skin)) return SkinRandom();
    else return skin;
}




//Por fim, coloque no response do dialog citado por vocк:


SetPlayerSkin(playerid,SkinRandom());

Espero ter ajudado .
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)