The Dink Network

Oops...

Pilgrim's Quest

March 16th 2004, 01:01 PM
bonca.gif
Christiaan
Bard They/Them Netherlands
Lazy bum 
I punched the weaponsmith in the village at the water (you know, with the women and all) so now he won't sell me stuff anymore... what to do?
March 16th 2004, 04:09 PM
custom_simon.gif
SimonK
Peasant He/Him Australia
 
Load a saved game?

I'll look at the script and see if you've reached a dead end there...

I plan to release the source... soon... I was going to do it as a html thing, with links between scripts, but as I'm averaging about 4 scripts a night and there are 640 scripts... it's going to take too long...

So I figure I'll do a covering document, listing which scripts you may want to check out for say new magic; Skard; weapons... and leave it at that.
March 16th 2004, 04:10 PM
wizardb.gif
merlin
Peasant He/Him
 
SimonK ... There ARE things to do that for you. .
March 17th 2004, 01:21 AM
custom_simon.gif
SimonK
Peasant He/Him Australia
 
So... how long do you plan to keep me in suspense?

I'm using a free HTML editor at the moment, can't see that it can do that... but I figured there has to be something that can open a text file add a header and footer, find and replace certain words... ah heck maybe I should explore doing it as a Windows Help file or pdf thingy...
March 17th 2004, 01:46 AM
custom_simon.gif
SimonK
Peasant He/Him Australia
 
If this is the Stone Giant weaponsmith (aka Armourer) in Port Town) he only says...

void hit( void )
{
say("`3Have you got a death wish?", &current_sprite);
}
March 17th 2004, 12:30 PM
bonca.gif
Christiaan
Bard They/Them Netherlands
Lazy bum 
oops, my bad, that isn't the blacksmith, but the healing guy. I can live without him. punched him to death. mwhaha
March 18th 2004, 12:53 AM
custom_simon.gif
SimonK
Peasant He/Him Australia
 
void hit( void )
{
playsound(28, 22050,0,&current_sprite, 0);
int &rcrap = random(4, 1);
if (&rcrap > 2)
{
say("`2Why you hit me? I'm a good goblin.", &current_sprite);
} else
{
//set flag for Goblin to attack Dink
&myflag = 100;
editor_seq(&donk, &myflag);
attackdink:
say("`2I gonna use your head for pounding practice", &current_sprite);
sp_base_attack(&current_sprite, 750);
sp_distance(&current_sprite, 50);
sp_target(&current_sprite, 1);
sp_defense(&current_sprite, 2);
sp_strength(&current_sprite, 15);
sp_touch_damage(&current_sprite, 10);
sp_hitpoints(&current_sprite, 40);
sp_exp(&current_sprite, 40);
sp_brain(&current_sprite, 9);
}
}

and with this is the main() proc... you're in trouble...

if (&myflag >= 100)
goto attackdink;

How many times have you hit the goblin?
March 18th 2004, 06:36 AM
bonca.gif
Christiaan
Bard They/Them Netherlands
Lazy bum 
a couple of times. he's dead now
August 26th 2004, 10:04 PM
anon.gif
Jahopa
Ghost They/Them
 
SimonK Have you tried to use Microsoft's Word? It does a very ugly html code, but it works. Just open the file in it and save as .html (if you have 97 version or higher)
August 26th 2004, 10:11 PM
knightg.gif
WC
Peasant He/Him United States
Destroying noobs since 1999. 
can we say bloat code?

I never saw so much junk html code...
August 26th 2004, 10:12 PM
knightg.gif
WC
Peasant He/Him United States
Destroying noobs since 1999. 
Use the save agme editor and just change the varible.
August 29th 2004, 09:45 AM
anon.gif
Jahopa
Ghost They/Them
 
When I'm in a lazy mood, I use it, but afterwards I open the page in my html editor and do a lot of cleaning up ( you know that lazy people end up working more than who gets the proper work done in first place...)