Super Needs Help

Author Topic: Super Needs Help  (Read 2685 times)


Be careful with the schedule interval, it's interpreted as milliseconds and 1 is much lower than necessary.


I wonder what triggers that strange quote-chain glitch.  Completely empty quotes, perhaps?

I wonder what triggers that strange quote-chain glitch.  Completely empty quotes, perhaps?

Sorry. I changed the posts so it won't cause that glitch.
« Last Edit: April 28, 2015, 05:09:43 PM by Hime »

Is there anyway to used local variables in a diffrent finction than its mentioned ?

Is there anyway to used local variables in a diffrent finction than its mentioned ?
Yep.

Let's say you have this function:

function chair(%variable) {
    %variable += 5;
    table(%variable);
}

So you can call the chair function with a number, and chair will add five to the number then call table with the number, like this.

function table(%variable) {
    echo(%variable);
}

This would echo the variable plus five. Also note that just because I named the variable %variable doesn't mean it has to be that. You can even change it in the table function, it doesn't matter.

« Last Edit: April 29, 2015, 07:39:39 AM by SuperFlaminninja³ »