MMOMinion

Full Version: Skipping a task with a gp condition?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is this possible?
explain
task 1 has no GP requirement
task 2 has 500 GP requirement
task 3 has no GP requirement

He wants it to do task 1 and task 3 till it has the required GP and in case not able to reach 500 GP task 2 is skipped all together. that is my understanding from the title.
set a condition
["Player.gp.current >= xxx"] = true;

it wont start the task unless you have the gp set..

this is different than the mingp set which is only checked at the node.
(07-24-2016, 11:24 AM)sebbs Wrote: [ -> ]set a condition
["Player.gp.current >= xxx"] = true;

it wont start the task unless you have the gp set..

this is different than the mingp set which is only checked at the node.

thanks so much! exactly what i was lookin for! was searchin for all the condition paramaters and couldnt find.