SA-MP Forums Archive
[Include] All Skins Class Selection Menu in 9 lines - 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: Filterscripts (https://sampforum.blast.hk/forumdisplay.php?fid=17)
+--- Thread: [Include] All Skins Class Selection Menu in 9 lines (/showthread.php?tid=454138)



All Skins Class Selection Menu in 9 lines - Opah - 27.07.2013

well this is nothing i just found out some guys writing 300 lines of code for adding the classes to the class selection menu i thought making this stock to help them
P.S you can edit and add weapons and so if u want more options say to me
pawn Код:
stock AddClasses()
{
    new a = 0;
    while(a <= 299)
    {
        AddPlayerClass(a, 2485.6213,-1665.0665,15, -1, 0, 0, 0, 0, 0, 0);
        a = a + 1;
    }
}
again i know this is nothing


Re: All Skins Class Selection Menu in 9 lines - San1 - 27.07.2013

Wrong Section Sir and this is not a Include


Re: All Skins Class Selection Menu in 9 lines - Opah - 27.07.2013

well that isnt a gamemode or a filterscript or tutorial


Re: All Skins Class Selection Menu in 9 lines - [SF]OutLawZ - 28.07.2013

Quote:
Originally Posted by Opah
Посмотреть сообщение
well that isnt a gamemode or a filterscript or tutorial
It's a snippet


Re: All Skins Class Selection Menu in 9 lines - sKgaL - 28.07.2013

why not 1 line ?

Код:
for(new i=0;i<=299;i++)AddPlayerClass(i, 2485.6213,-1665.0665,15, -1, 0, 0, 0, 0, 0, 0);
still , not the right place !