Posts
143
Respect
41Add +1
Forum Rank
Pack-a-Puncher
Primary Group
Member
Login Issues
Forgot password?Activate Issues
Account activation email not received? Wrong account activation email used?Other Problems?
Contact Support - Help Center Get help on the UGX Discord. Join it now!function jump()
{
jumpx = getent ("jump","targetname");
air1 = getent ("air1","targetname");
air2 = getent ("air2","targetname");
air3 = getent ("air3","targetname");
air4 = getent ("air4","targetname");
time = 1;
for(;;)
{
jumpx waittill ("trigger",user);
if (user istouching(jumpx))
{
//throw = user.origin + (100, 100, 0);
air = spawn ("script_model",(0,0,0));
air.origin = user.origin;
air.angles = user.angles;
user linkto (air);
air moveto (air1.origin, time);
air3 playsound ("zmb_hellhound_bolt");
wait 1;
air moveto (air2.origin, time);
wait .5;
air moveto (air3.origin, time);
air3 playsound ("zmb_hellhound_bolt");
wait .5;
air moveto (air4.origin, time);
wait 1;
user unlink();
wait 1;
}
}
}