The Dink Network

Reply to Re: Dink Goes Hunting

If you don't have an account, just leave the password field blank.
Username:
Password:
Subject:
Antispam: Enter Dink Smallwood's last name (surname) below.
Formatting: :) :( ;( :P ;) :D >( : :s :O evil cat blood
Bold font Italic font hyperlink Code tags
Message:
 
 
July 18th 2006, 07:19 PM
bonca.gif
Erwin
Peasant He/Him Netherlands
Friendship is magic 
Hey with all this testing I actualy discoverd a bug in CC2

//item Berserk Potion

void main( void )
{

&life += 20;
if (&life > &lifemax) &life = &lifemax;
&strength += 5
&nosave += 1
wait(10000)
int &isbusy = busy(1);
if (&isbusy == 0)
say("The rage has left me...", 1);
&strength -= 5
&nosave = 0 This should be changed to &nosave -= 1; (I think)
kill_this_task();
}