The Dink Network

Reply to Re: Contest: Vampire D-Mod

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:
 
 
May 2nd 2004, 07:32 AM
custom_king.png
redink1
King He/Him United States bloop
A mother ducking wizard 
It doesn't have to be that advanced or anything.

//dumbpeasent.c
void hit(void)
{
say("I am drinking your blood!", 1);
&life += 5;
}

//bloodonfloor.c
void touch(void)
{
say("Yum, random blood on floor!", 1);
&life += 1;
}

//spawndiefromnoblood.c
void main(void)
{
loop:
wait(30000);
&life -= 1;
goto loop;
}

Update: Also I modified the specifications so the player doesn't have to be killed from not drinking blood, just they have to drink blood to win.