psychobolt
08-09-2005, 07:32 PM
^^
[T1 Request] Jet Jump scriptpsychobolt 08-09-2005, 07:32 PM ^^ EasyTarget 08-09-2005, 08:39 PM I think writer has one and also multifunction I think has one. Moss 08-09-2005, 09:03 PM editActionmap("playmap.sae"); bindCommand(keyboard0, make, "space", TO, "Jump::Start();"); bindCommand(keyboard0, break, "space", TO, "Jump::Stop();"); bindCommand(mouse0, make, button1, TO, "Jet::Start();"); bindCommand(mouse0, break, button1, TO, "Jet::Stop();"); $Jump:Delay = 0.009; function Jump::Start() { postAction(2048, IDACTION_MOVEUP, 1); Schedule::Add("Jump::Start();", $Jump:Delay); } function Jump::Stop() { Schedule::Cancel("Jump::Start();"); } $Jet::Jump = "true"; function Jet::Start() { if($Jet::Jump) { postAction(2048, IDACTION_MOVEUP, 1); postAction(2048, IDACTION_JET, 1); } else { postAction(2048, IDACTION_JET, 1); } } function Jet::Stop() { postAction(2048, IDACTION_JET, 0); } mine's pilot mode compatible, i can make that for you if you pm | ||