Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Oblivious

Pages: [1]
1
Modification Help / Re: Interval Command?
« on: August 27, 2010, 08:30:05 PM »
You do know how schedule works right?

its schedule(time,this,function,args)

lets say time = 3 seconds

and schedule basically means, in 3 seconds, we will call this function with its arguments!

Actually, I really don't., . . . I'm like a week old at this.

2
Modification Help / Re: Interval Command?
« on: August 26, 2010, 09:57:33 PM »
Genius... It echoed ijtoggle == 1 then ijtoggle == 0 , didn't keep repeating itself.

3
Modification Help / Re: Interval Command?
« on: August 26, 2010, 08:39:40 PM »
Still not working, at all. :[ Even if i do define the toggle. still doing the exact same thing,.

4
Modification Help / Re: Interval Command?
« on: August 26, 2010, 07:34:43 PM »
Thanks guys! Unfortunately your guys's Codes did not make a difference. BUT i did get this to code, to start working. I got the schedule to sorta work.
Code: [Select]
function IdleJet(%IJToggle)
{
if(%IJToggle == 1)
       {
Jet(1);
schedule(3000, 0, Jet, 1);
       }
else
       {
Jet(0);
schedule(1000, 0, Jet, 0);
       }
}
if (!$IdleJet)
{
   $remapDivision[$remapCount] = "IdleJetV1";
   $remapName[$remapCount] = "Toggle";
   $remapCmd[$remapCount] = "IdleJet";
   $remapCount++;
   $IdleJet=true;
}
But this wont loop?? HALP?

5
Modification Help / Re: Interval Command?
« on: August 25, 2010, 09:08:02 PM »
I get this to exec, but it seems like all it is, is the Jet. Its liek a second bind to Jet. -.- Take a look, If you guys could give me some pointers, that'd be great.

Code: [Select]
function IdleJet(%IJToggle)
{
if(%IJToggle == 1)
       {
Jet(1);
schedule(2000,0,Jet(1),%IJToggle);
       }
else
       {
Jet(0);
schedule(1000,0,Jet(0),%IJToggle);
       }
}
if (!$IdleJet)
{
   $remapDivision[$remapCount] = "IdleJetV1";
   $remapName[$remapCount] = "Toggle";
   $remapCmd[$remapCount] = "IdleJet";
   $remapCount++;
   $IdleJet=true;
}

6
Modification Help / Re: Interval Command?
« on: August 24, 2010, 11:21:25 PM »
I took the colon off, still sais theres an error there. -.- But Thanks.

7
Modification Help / Re: Interval Command?
« on: August 24, 2010, 10:07:49 PM »
Value would be one, correct?

8
Add-Ons / Re: JetBot V1
« on: August 24, 2010, 09:38:10 PM »
Because, I think It's quite useful. I replaced it with my jump key. and it works awesome for me. Especially in mini-games. But i mean, If you don't like it. That's Fine. As far as this Rule number one thing? It don't matter to me, whether its stupid or not.  I'm not embarrassed. There is a lot of people that can't manage ANY script. I'm Proud.

9
Modification Help / Re: Interval Command?
« on: August 24, 2010, 09:31:40 PM »
I replaced the Interval string and put Schedule(2000,0,IdleJet). But It's giving me a sythax error, Line one?

10
Modification Help / Re: Interval Command?
« on: August 24, 2010, 09:23:16 PM »
*Facepalm* Its noottt woorkiiiinngngngggg :C

11
Add-Ons / Re: JetBot V1
« on: August 24, 2010, 08:56:54 PM »
acronyms for get the forget out? and spelled out too? you need to revise what you know and realize that it is nothing, you ignorant whelp.
What the? Why are you guys all PMSing over a stupid addon? just chillax.

12
Add-Ons / Re: JetBot V1
« on: August 24, 2010, 08:51:48 PM »
Not at all, Bud. I'm just saying, Stop trolling my post, Your wasting your time.

13
Add-Ons / Re: JetBot V1
« on: August 24, 2010, 08:47:15 PM »
Okay, Call me your names. But i think the best thing for you is, is to learn how to look at something and if you don't like it, Gee-Tee-Eff-Oh

14
Add-Ons / Re: JetBot V1
« on: August 24, 2010, 08:44:05 PM »
I'm sorry you don't like my FIRST SCRIPT, im not here to impress a bunch of leechers.

15
Modification Help / Re: Interval Command?
« on: August 24, 2010, 08:42:25 PM »
Actually Zombie, WAIT!  Schedule. Like How would it look in the script like Schedule(Milliseconds)?

Pages: [1]