P
phlops
Guest
I recently started using the worldedit tool though I have been programming in PHP for the last few years and I was wondering if anyone knows of a substitution for a while() function or a more advanced for() function in worldedit. I need to be able to do this sort of action:
for ($a == 1; $b > 10)
{
loop actions
}
my only ideas were setting
For each (integer blah) from 1 to 99999 do
action
and then setting blah to a number greater than 99999 to end it.
Any ideas or suggestions are welcome.
for ($a == 1; $b > 10)
{
loop actions
}
my only ideas were setting
For each (integer blah) from 1 to 99999 do
action
and then setting blah to a number greater than 99999 to end it.
Any ideas or suggestions are welcome.


