Random Skin Help - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Random Skin Help (
/showthread.php?tid=579529)
Random Skin Help -
JizzyE - 27.06.2015
Hey gey, i'm treing to make a skin syst which that allow me only to pick a skin from a pre-made interval fo exomple
Код:
new RandomSkins
{
211,
177,
3,
18,
280
};
so i can only got 1 of thos skins. Help me plz, sorry fo bad englesh.
Re: Random Skin Help -
Larceny - 27.06.2015
Код:
new RandomSkins[] =
{
211, 177, 3, 18, 280
};
new skinid = RandomSkins[random(sizeof(RandomSkins))];
Re: Random Skin Help -
Alex Magaсa - 27.06.2015
https://sampforum.blast.hk/showthread.php?tid=139456
Re : Random Skin Help -
JizzyE - 27.06.2015
thanks you mans