13.06.2011, 19:44
(
Последний раз редактировалось Amine_Mejrhirrou; 13.06.2011 в 20:24.
Причина: Cyanide methode is beter
)
Pump It Up script (don't ask me why i call it like that "i have no idea")
Small and simple script that i've made in few min (cause i saw some one looking for that but i forget where )
this script is good for STUNT server
i'm not gonna explain what this script do but the video do
(video uploading) coming in few mints
[ame]http://www.youtube.com/watch?v=tzjDdoGhOKE[/ame]
code
Код:
#include <a_samp> forward pumpitup(); public OnFilterScriptInit() { SetTimer("pumpitup", 100, 1); return 1; } public OnFilterScriptExit() { return 1; } public pumpitup() { for(new i = 0; i < MAX_VEHICLES; i++) { ChangeVehicleColor(i, Random(255), Random(255)); } return 1; } stock Random(min, max) { new a = random(max - min) + min; return a; }