How would I get my GM to do calculations for an input
#2

Then you need an algorithm to produce results.

pawn Код:
new result1 = algorithm1(strval(params));
new result2 = algorithm2(strval(params));

stock algorithm1(value) {
    value *= 20;
    //More work here
    return value;
}

stock algorithm2(value) {
    value *= 25;
    //More work here
    return value;
}
Reply


Messages In This Thread
How would I get my GM to do calculations for an input - by Deal-or-die - 03.05.2012, 04:04
Re: How would I get my GM to do calculations for an input - by Krx17 - 03.05.2012, 06:09

Forum Jump:


Users browsing this thread: 1 Guest(s)