beginscript; ExcTargetType(0xffffffff); SetFollowRange(0); //AttachOtherToObj (FlatbedGun, Flatbed); label Block: if (GetGlobalVar(3) == 1000) { SetFollowWaypoint(251,0,0); EndFrame(); goto Wait; } EndFrame(); goto Block; label Wait: if (GetFollowMode() == 3) { SetGlobalVar(3, 3); SetVar (1, GetTime()+50); label TimeWait: if (GetVar(1) > GetTime()) { EndFrame(); goto TimeWait; } SetGlobalVar(3, 10); EndFrame(); goto End; } EndFrame(); goto Wait; label End: EndFrame(); goto End; endscript; $