PDA

View Full Version : My eyes!



Angafirith
06-11-2006, 01:07 AM
Basically, this script goes to the Construction Site in town, which right now deals 1 damage and 3 turns of Temporary Blindness. It repeats this until you reach 1 HP, uses a scroll of drastic healing, and repeats forever.

While I know this script probably won't do anything after today, I thought it'd be funny to write it and post it. I currently have 2637 turns of Temporary Blindness. It was a good year :)

Nightmist
06-11-2006, 01:33 AM
Well I doubt theres any point to this (I have a multi with 31350 turns of temporary blindness and it doesnt give me a trophy so if your attempting to "spade" out a trophy I dont think one exists.)

But instead of

while( 1 == 1)
you can try using

while( have_effect( $effect[Temporary Blindness]) < Number of turns you want of the blindness)

efilnikufecin
06-11-2006, 03:06 AM
Just a funny little note, when I want an infinite loop I use:

while(true)
{
//do something
}