[FilterScript] pump it up script (CHANGING VEHICULS COLOR ) ==> must see the video to understand
#1

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;
}
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)