📧 Message Board Archive

v1.06
Does anyone know how to remove "v1.06" from a d-mod title screen?
Re: v1.06
: Does anyone know how to remove "v1.06" from a d-mod title screen?



Huh, I never thought of doing that. But here, this seems to work.



add these lines right before kill_this_task(); in START.c



&crap = get_sprite_with_this_brain(8, 1);

sp_kill(&crap, 1000);



That will make it vanish after one second; I thought it might be good to let the user see it briefly. But if you'd rather not show it at all, change 1000 to 1.



You can also move it using something like



sp_y(&crap, 12);

sp_x(&crap, 290);



instead of the sp_kill line.
Re: v1.06
: : Does anyone know how to remove "v1.06" from a d-mod title screen?



: Huh, I never thought of doing that. But here, this seems to work.



: add these lines right before kill_this_task(); in START.c



: &crap = get_sprite_with_this_brain(8, 1);



: sp_kill(&crap, 1000);



: That will make it vanish after one second; I thought it might be good to let the user see it briefly. But if you'd rather not show it at all, change 1000 to 1.



: You can also move it using something like



: sp_y(&crap, 12);



: sp_x(&crap, 290);



: instead of the sp_kill line.



:0

    Thank you so much!!

--FYI--altering the x/y works better than killing the sprite.  Even with sp_kill(&crap, 1); it is still briefly visable.



Out of curiousity... Where is the script that put that bugger there in the first place?

:)







Re: v1.06
: Out of curiousity... Where is the script that put that bugger there in the first place?



There isn't one, it is hard-built into the dink.exe program, just like the random things Dink says when he is talking to nothing, or trying to use magic when he doesn't have any.
Re: v1.06


: There isn't one, it is hard-built into the dink.exe program, just like the random things Dink says when he is talking to nothing, or trying to use magic when he doesn't have any.



Is there actually no way to remove them? Thou are stupid if you make a dmod where vechile plays the main role or something.