Castman's Profile
Trying to make a mod that will score better than 6.3.
I'm trying to use in my first D-Mod a "Special Hit" where Dink throw
4 throwing axes at the same time one up, other down, etc...
But Dink throws only one axe ever to the same direction
!! Someone help!!
This is the script:
//item axe special
void use( void )
{
playsound(8, 8000,0,0,0);
&basehit = sp_dir(1, -1);
&basehit += 320;
sp_seq(1, &basehit);
sp_frame(1, 1); //reset seq to 1st frame
sp_kill_wait(1); //make sure dink will punch right away
sp_nocontrol(1, 1); //dink can't move until anim is done! &mholdx = sp_x(1, -1); &mholdy = sp_y(1, -1);
//freeze(1);
wait(100);
{ &mholdx -= 30; &junk = create_sprite(&mholdx, &mholdy, 11, 85, 1); sp_seq(&junk, 85); sp_mx(&junk, -6); sp_my(&junk, +2); sp_dir(&junk, 4); sp_dir(&junk, 6); sp_dir(&junk, 2); sp_dir(&junk, 8);
}
//create fake shadow effect
sp_timing(&junk, 0); sp_speed(&junk, 6); sp_strength(&junk, 15); if (&strength > 25) { &stm = &strength; &stm -= 10; sp_strength(&junk, &stm); } sp_range(&junk, 10); //this makes it easier to hit stuff sp_flying(&junk, 1); sp_attack_hit_sound(&junk, 48); sp_attack_hit_sound_speed(&junk, 13000); &mshadow = create_sprite(&mholdx, &mholdy, 15, 432, 3); sp_brain_parm(&mshadow, &junk); sp_que(&mshadow, -500);
//will be drawn under everything
//set fireball to not be able to damage Dink or the shadow sp_brain_parm(&junk, 1); sp_brain_parm2(&junk, &mshadow);
void disarm(void) { &magic_cost = 0; kill_this_task(); }
void arm(void)
{
init("load_sequence_now graphics\dink\walk\ds-w1- 71 43 38 72 -14 -9 14 9");
init("load_sequence_now graphics\dink\walk\ds-w2- 72 43 37 69 -13 -9 13 9");
init("load_sequence_now graphics\dink\walk\ds-w3- 73 43 38 72 -14 -9 14 9");
init("load_sequence_now graphics\dink\walk\ds-w4- 74 43 38 72 -12 -9 12 9");
init("load_sequence_now graphics\dink\walk\ds-w6- 76 43 38 72 -13 -9 13 9");
init("load_sequence_now graphics\dink\walk\ds-w7- 77 43 38 72 -12 -10 12 10");
init("load_sequence_now graphics\dink\walk\ds-w8- 78 43 37 69 -13 -9 13 9");
init("load_sequence_now graphics\dink\walk\ds-w9- 79 43 38 72 -14 -9 14 9");
init("load_sequence_now graphics\dink\idle\ds-i2- 12 250 33 70 -12 -9 12 9");
init("load_sequence_now graphics\dink\idle\ds-i4- 14 250 30 71 -11 -9 11 9");
init("load_sequence_now graphics\dink\idle\ds-i6- 16 250 36 70 -11 -9 11 9");
init("load_sequence_now graphics\dink\idle\ds-i8- 18 250 32 68 -12 -9 12 9");
init("load_sequence_now graphics\dink\hit\normal\ds-h2- 102 75 60 72 -19 -9 19 9");
init("load_sequence_now graphics\dink\hit\normal\ds-h4- 104 75 61 73 -19 -10 19 10");
init("load_sequence_now graphics\dink\hit\normal\ds-h6- 106 75 58 71 -18 -10 18 10");
init("load_sequence_now graphics\dink\hit\normal\ds-h8- 108 75 61 71 -19 -10 19 10");
Debug("Preloading ice");
&magic_cost = 800;
int &basehit;
int &mholdx;
int &mholdy;
int &junk;
int &mshadow;
int &mydir;
preload_seq(85);
preload_seq(94);
}
void pickup(void)
{
Debug("Player now owns this item.");
kill_this_task();
}
void drop(void)
{
Debug("Item dropped.");
kill_this_task();
}
Could someone help
??
4 throwing axes at the same time one up, other down, etc...
But Dink throws only one axe ever to the same direction
This is the script:
//item axe special
void use( void )
{
playsound(8, 8000,0,0,0);
&basehit = sp_dir(1, -1);
&basehit += 320;
sp_seq(1, &basehit);
sp_frame(1, 1); //reset seq to 1st frame
sp_kill_wait(1); //make sure dink will punch right away
sp_nocontrol(1, 1); //dink can't move until anim is done! &mholdx = sp_x(1, -1); &mholdy = sp_y(1, -1);
//freeze(1);
wait(100);
{ &mholdx -= 30; &junk = create_sprite(&mholdx, &mholdy, 11, 85, 1); sp_seq(&junk, 85); sp_mx(&junk, -6); sp_my(&junk, +2); sp_dir(&junk, 4); sp_dir(&junk, 6); sp_dir(&junk, 2); sp_dir(&junk, 8);
}
//create fake shadow effect
sp_timing(&junk, 0); sp_speed(&junk, 6); sp_strength(&junk, 15); if (&strength > 25) { &stm = &strength; &stm -= 10; sp_strength(&junk, &stm); } sp_range(&junk, 10); //this makes it easier to hit stuff sp_flying(&junk, 1); sp_attack_hit_sound(&junk, 48); sp_attack_hit_sound_speed(&junk, 13000); &mshadow = create_sprite(&mholdx, &mholdy, 15, 432, 3); sp_brain_parm(&mshadow, &junk); sp_que(&mshadow, -500);
//will be drawn under everything
//set fireball to not be able to damage Dink or the shadow sp_brain_parm(&junk, 1); sp_brain_parm2(&junk, &mshadow);
void disarm(void) { &magic_cost = 0; kill_this_task(); }
void arm(void)
{
init("load_sequence_now graphics\dink\walk\ds-w1- 71 43 38 72 -14 -9 14 9");
init("load_sequence_now graphics\dink\walk\ds-w2- 72 43 37 69 -13 -9 13 9");
init("load_sequence_now graphics\dink\walk\ds-w3- 73 43 38 72 -14 -9 14 9");
init("load_sequence_now graphics\dink\walk\ds-w4- 74 43 38 72 -12 -9 12 9");
init("load_sequence_now graphics\dink\walk\ds-w6- 76 43 38 72 -13 -9 13 9");
init("load_sequence_now graphics\dink\walk\ds-w7- 77 43 38 72 -12 -10 12 10");
init("load_sequence_now graphics\dink\walk\ds-w8- 78 43 37 69 -13 -9 13 9");
init("load_sequence_now graphics\dink\walk\ds-w9- 79 43 38 72 -14 -9 14 9");
init("load_sequence_now graphics\dink\idle\ds-i2- 12 250 33 70 -12 -9 12 9");
init("load_sequence_now graphics\dink\idle\ds-i4- 14 250 30 71 -11 -9 11 9");
init("load_sequence_now graphics\dink\idle\ds-i6- 16 250 36 70 -11 -9 11 9");
init("load_sequence_now graphics\dink\idle\ds-i8- 18 250 32 68 -12 -9 12 9");
init("load_sequence_now graphics\dink\hit\normal\ds-h2- 102 75 60 72 -19 -9 19 9");
init("load_sequence_now graphics\dink\hit\normal\ds-h4- 104 75 61 73 -19 -10 19 10");
init("load_sequence_now graphics\dink\hit\normal\ds-h6- 106 75 58 71 -18 -10 18 10");
init("load_sequence_now graphics\dink\hit\normal\ds-h8- 108 75 61 71 -19 -10 19 10");
Debug("Preloading ice");
&magic_cost = 800;
int &basehit;
int &mholdx;
int &mholdy;
int &junk;
int &mshadow;
int &mydir;
preload_seq(85);
preload_seq(94);
}
void pickup(void)
{
Debug("Player now owns this item.");
kill_this_task();
}
void drop(void)
{
Debug("Item dropped.");
kill_this_task();
}
Could someone help
Castman has released 4 files
| Title | Category | Avg | Updated |
|---|---|---|---|
| Darklands Cliffs 'n' Road | Development, Graphics | 8.0 | September 4th, 2011 |
| Goblin Wars - Breaking Point | D-Mod, Romp | 6.3 | July 17th, 2011 |
| Dink Smallwood FreeMap | Development, Utility | 9.0 | November 9th, 2010 |
| Dink Smallwood at the City of the Dead | D-Mod, Demo | 6.3 | December 29th, 2007 |
Castman has written 4 reviews
| Title | File | Type | Score | Date |
|---|---|---|---|---|
| The Last Quest - | The Last Quest Part 1: The Oraculum | Normal | 6.5 | November 7th, 2016 |
| Quest Log Review | Item - Quest Log | Normal | 8.5 | December 14th, 2009 |
| You´Re Lyna(Milder´S Widow) And 10 of the King´S Knights have Disapeared | Lyna's Story | Normal | 9.9 | May 16th, 2006 |
| It´S Like the Old Arcade Game | Dink Racer | Normal | 5.0 | February 27th, 2006 |
Castman has taken 2 screenshots
| Screenshot | File | Date |
|---|---|---|
![]() |
Darklands Cliffs 'n' Road | September 4th, 2011 |
![]() |
Dink Smallwood at the City of the Dead | January 3rd, 2008 |

8.0
6.3
9.0






