(26 Feb 11, 07:32PM)macm Wrote:OK, finally got some time to illustrate:(26 Feb 11, 06:43PM)V-Man Wrote: ah! But can it return values in-frame like its sibling idents?
i dont understand, while_ adds a condition to a list, when this condition is true the second argument will be executed,
while_ checks every 0 miliseconds if the conditions in the list are true,
you can add as more as you want,
so if i do: /while_ [alive] [echo "spam"]
it will check every 0 milis, if you are alive spam the console, if not do nothing.
or if dead:
/while_ [!= (alive) 1] [if_conline_has "R.I.P." [] if_not [echo "R.I.P."]]
Ideally, this
[SELECT ALL] Code:
alias test [
whileresult = 0
tmp_while = 10
while_ [$tmp_while] [
+= whileresult 1
-= tmp_while 1]
result $whileresult]
[SELECT ALL] Code:
alias test [
whileresult = 0
tmp_while = 10
while [$tmp_while] [
+= whileresult 1
-= tmp_while 1]
result $whileresult]
When you can snatch this pebble from my hand figure out why and fix it, I'll be profoundly impressed.