The Dink Network

The hall of warps(aka the quest for a psychiatrist)

November 25th 2005, 04:13 PM
duckdie.gif
I'm new to the programming thing (only played with it for a few months) and trying to get a dmod going. Its probably going to be rated a 2 or something. Its about finding your way through a huge complicated maze of telports that with any luck will lead you to your psychiatrist... which you'll need after the maze. (I have a much better plot that that though)

-I've gotten a little bit done on my game. mainly one page that would not work for me... but now its scripting keeps crashing. im trying to find the error now. -fixed

-I've gotten a lot more done on my game. And I've decided what type of maze it will be. It's the type that you have to retrace your steps a lot to go back and find keys and other item's you've missed.
November 25th 2005, 06:19 PM
custom_simon.gif
SimonK
Peasant He/Him Australia
 
Sounds like its got potential... warping to different mind sets, past experiences, key growth points in development... yeah... if I was doing it then it would get pretty Freudian...
November 25th 2005, 07:20 PM
burntree.gif
Striker
Noble She/Her United States
Daniel, there are clowns. 
Indeed.
November 25th 2005, 07:54 PM
custom_king.png
redink1
King He/Him United States bloop
A mother ducking wizard 
Really? I was assuming that it would *just* be a maze with a bunch of warps, with no monsters, no scenery, no characters, and only random luck and memorization to get to the end. That would seem appropriate for '2' rating.
November 26th 2005, 05:41 AM
slimeg.gif
metatarasal
Bard He/Him Netherlands
I object 
I've always wondered about the possibility to have Dink make involentary movements. Would that be something for a DMOD like this?
November 27th 2005, 09:56 AM
knightg.gif
cypry
Peasant He/Him Romania
Chop your own wood, and it will warm you twice. 
Is there any way to make dink hit somebody in a cutscene?
I know I can make the sprite say something the player won't like, then unfreeze dink for a moment, but some players might be non-violent.
November 27th 2005, 10:16 AM
fish.gif
Simeon
Peasant He/Him Netherlands
Any fool can use a computer. Many do. 
You could emulate it by playing Dink's hit sequence and playing the hit-sound I guess.
November 27th 2005, 10:25 AM
custom_magicman.gif
magicman
Peasant They/Them Netherlands duck
Mmmm, pizza. 
Yup, I did it like that in my DMods after-intro movie. When he kills his mother
November 27th 2005, 10:30 AM
custom_king.png
redink1
King He/Him United States bloop
A mother ducking wizard 
sp_seq(1, 102);

Change 102 depending on direction.

You'll want to make sure that Dink has the fists and/or sword armed first, though. If he has the bow armed, it might not work very well.

November 28th 2005, 02:25 AM
slimeg.gif
metatarasal
Bard He/Him Netherlands
I object 
I tried that once but I got issues...

I played the hit sequence of a red knight, (and it automaticly did the hit-sound for some reason(probably related to some dink.ini lines)) but sometimes it didn't do the hit sequence at all. (I since abandoned that DMOD btw)
November 28th 2005, 05:34 AM
spike.gif
You need to preload_seq(#seq) to ensure it'll work.

Also you need both:
sp_seq(&sprite, #seq);
sp_frame(&sprite, 1);

It'll play the hit-sound if it hits something, (thanks to set_frame_special) but not the swing-sound since that's determined in the attack procedure or weapon script.

It's a little more complicated to make Dink hit, but those lines can be copied from item-fst.c
November 29th 2005, 01:44 AM
slimeg.gif
metatarasal
Bard He/Him Netherlands
I object 
Yeah... Probably that was the problem with my DMOD too. I might use it in the future (since the DMOD I was refering to is abandoned)