03.05.2012, 06:09
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;
}