SA-MP Forums Archive
Skins - 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: Skins (/showthread.php?tid=362505)



Skins - KingyKings - 24.07.2012

Is there anywhere which lists all the skins in samp pawn code. So i can just copy and paste them all?

In the format:
Quote:

AddPlayerClass(1,1958.3783,1343.1572,15.3746,270.1 425,0,0,0,0,-1,-1);
AddPlayerClass(2,1958.3783,1343.1572,15.3746,270.1 425,0,0,0,0,-1,-1);
AddPlayerClass(3,1958.3783,1343.1572,15.3746,270.1 425,0,0,0,0,-1,-1);

Or something like that?

If someone tells me where i can get this or a valid answer

Then i will + rep.


Re: Skins - tiernantheman - 24.07.2012

1, 2 and 3 are just the skin ids. You can use them for different skin ids. You can find a list of the skin ids here. https://sampwiki.blast.hk/wiki/Skins:All. And no they don't list them all you just gotta change them yourself.


Re: Skins - KingyKings - 24.07.2012

I know that... I want a list of all the skin ids i can Copy and Paste into my script to avoid taking to much time adding them all one by one.


Re: Skins - Vince - 24.07.2012

0 through 299. Use a loop.


Re: Skins - KingyKings - 25.07.2012

How do i create a loop? i have to do it manualy?


Re: Skins - Jstylezzz - 25.07.2012

pawn Код:
for(new i = 0; i < 299; i++)
    {
    AddPlayerClass(i,1958.3783,1343.1572,15.3746,270.1 425,0,0,0,0,-1,-1);
    }
I think like this, correct me if im wrong