18.11.2018, 00:03
why not give the skin randoms to each team
How do I give him a random skin when he dies too?
Code:
How do I give him a random skin when he dies too?
Code:
PHP код:
new Dragons[] = { 4, 6, 14, 32, 44, 195 };
new Templarios[] = { 58, 66, 72, 95, 122, 184 };
new Members[] = { 293, 292, 273, 195, 134, 8 };
//OnGameModeInit
AddPlayerClassEx(DRAGONS, Dragons[random(6)], 318.8639,1121.6978,1083.8828,180.1659, 24,99999, 0,0, 0,0);
AddPlayerClassEx(TEMPLARIO, Templarios[random(6)], 2264.5317,-1209.7946,1049.0234,253.0367, 24,99999, 0,0, 0,0);
AddPlayerClassEx(MEMBERS, Members[random(6)], 2324.6138,-1143.4207,1050.4922,178.6559, 24,99999, 0,0, 0,0);