I am slowly learning how to script but right now I barely now anything. Can someone tell me how I can make this script (that was inside of a bullet not a gun) shoot faster?
I put the bulletscript inside a gun that was supposed to shoot rapid fire but the gun only shot like 1 bullet per 10 seconds...
Can someone show the neccesary modifications to make the bullet script shoot faster?
default
{
on_rez(integer param)
{
llSetDamage(50.0);
llSetTimerEvent(6.0);
}
collision_start(integer num)
{
vector vel = llGetVel() * 3000;
llPushObject(llDetectedKey(0), vel, ZERO_VECTOR, FALSE);
}
timer()
{
llDie();
}
}