#1

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.
Reply
#2

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.
Reply
#3

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.
Reply
#4

0 through 299. Use a loop.
Reply
#5

How do i create a loop? i have to do it manualy?
Reply
#6

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
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)