The Dink Network

Reply to Re: Colours in graphics

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:
 
 
December 22nd 2005, 01:25 PM
knightg.gif
cypry
Peasant He/Him Romania
Chop your own wood, and it will warm you twice. 
when i equip the magic, the D-mod inverts colours and shut's itself off!
I had this problem when working on a spell too. I had to press the restart button. Then I checked the script, fixed something and it worked. The script was doing something like this:

loop:
blah...blah...blah...
if(....) goto loop;

I fixed it doing this:
loop:
wait(5);
blah...blah...blah...
if(....) goto loop;