The Dink Network

INI-lines...?

Pilgrim's Quest - Female Goblin

January 25th 2010, 01:33 PM
custom_iplaydink.gif
iplaydink
Peasant He/Him Sweden
Hmm.. 
The ini-lines for attack and walk with sword wasn't included, so I took a look in the original Dink.ini for pilgrims quest a saw that he never loaded those files! How is this possible? You can't see them in editor either. The only files loaded are normal walking and walking naked.
January 25th 2010, 01:44 PM
bonca.gif
Erwin
Peasant He/Him Netherlands
Friendship is magic 
They're probably loaded mid game somewhere then. Try checking out the scripts.
January 25th 2010, 02:19 PM
custom_iplaydink.gif
iplaydink
Peasant He/Him Sweden
Hmm.. 
That sucks. I haven't got the source code (Can't decompile this ) and even if I had it would take hours to find :/
January 25th 2010, 02:32 PM
custom_magicman.gif
magicman
Peasant They/Them Netherlands duck
Mmmm, pizza. 
It's similar in the main Dink game, and in any D-Mod that has its own weapon graphics. Look at the "void arm(void)" procedure in the sword/shakra/whatever scripts. The following is copied from "item-sw0.c":

  init("load_sequence_now graphics\dink\sword\walk\d-sw1- 71 43 64 69 -14 -10 14 10");
  init("load_sequence_now graphics\dink\sword\walk\d-sw2- 72 43 35 70 -21 -10 19 10");
  init("load_sequence_now graphics\dink\sword\walk\d-sw3- 73 43 28 69 -13 -9 13 9");
  init("load_sequence_now graphics\dink\sword\walk\d-sw4- 74 43 66 75 -14 -12 20 12");
  
  init("load_sequence_now graphics\dink\sword\walk\d-sw6- 76 43 27 69 -23 -10 23 10");
  init("load_sequence_now graphics\dink\sword\walk\d-sw7- 77 43 38 94 -20 -10 20 10");
  init("load_sequence_now graphics\dink\sword\walk\d-sw8- 78 43 30 96 -15 -12 15 12");
  init("load_sequence_now graphics\dink\sword\walk\d-sw9- 79 43 31 80 -13 -9 13 9");
  
  init("load_sequence_now graphics\dink\sword\idle\d-si2- 12 250 74 73 -17 -12 16 9");
  init("load_sequence_now graphics\dink\sword\idle\d-si4- 14 250 57 103 -11 -12 16 10");
  init("load_sequence_now graphics\dink\sword\idle\d-si6- 16 250 30 92 -15 -9 11 9");
  init("load_sequence_now graphics\dink\sword\idle\d-si8- 18 250 35 106 -15 -12 15 9");
  
  init("load_sequence_now graphics\dink\sword\hit\d-sa2- 102 75 52 92 -23 -12 24 11");
  init("load_sequence_now graphics\dink\sword\hit\d-sa4- 104 75 74 90 -23 -13 23 14");
  init("load_sequence_now graphics\dink\sword\hit\d-sa6- 106 75 33 92 -18 -14 18 10");
  init("load_sequence_now graphics\dink\sword\hit\d-sa8- 108 75 46 109 -17 -16 17 10");
January 25th 2010, 02:58 PM
slayer.gif
rabidwolf9
Peasant He/Him United States
twitch.tv/rabidwolf9 
Went through the source code and managed to find this hunk of code to load Skard's graphics.

    //female goblin walking with sword replaces naked female goblin from brothel
    init("load_sequence_now graphics\gobfem\gobsword\gwsdwalk\gwsd1- 541 75 72 91 -17 -15 20 15");
    init("load_sequence_now graphics\gobfem\gobsword\gwsdwalk\gwsd3- 543 75 41 89 -19 -16 20 11");
    init("load_sequence_now graphics\gobfem\gobsword\gwsdwalk\gwsd7- 547 75 40 95 -21 -16 22 13");
    init("load_sequence_now graphics\gobfem\gobsword\gwsdwalk\gwsd9- 549 75 47 91 -19 -13 17 13");

    //female goblin dieing with sword replaces armoured female goblin from brothel
    init("load_sequence_now graphics\gobfem\gobsword\gwsddie\gswd1- 531 75 72 91 -34 -50 141 14");
    init("load_sequence_now graphics\gobfem\gobsword\gwsddie\gswd3- 533 75 41 89 -30 -46 53 11");
    init("load_sequence_now graphics\gobfem\gobsword\gwsddie\gswd7- 537 75 40 95 -16 -25 99 46");
    init("load_sequence_now graphics\gobfem\gobsword\gwsddie\gswd9- 539 75 47 91 -31 -6 73 37");

    //female goblin attack replaces goblin hammer attack
    init("load_sequence_now graphics\gobfem\gobsword\gwsdattk\gwsa2- 752 75 54 125 -18 -9 21 18");
    init("load_sequence_now graphics\gobfem\gobsword\gwsdattk\gwsa4- 754 75 64 102 -17 -13 12 12");
    init("load_sequence_now graphics\gobfem\gobsword\gwsdattk\gwsa6- 756 75 89 105 -17 -14 14 10");
    init("load_sequence_now graphics\gobfem\gobsword\gwsdattk\gwsa8- 758 75 39 100 -19 -8 18 17");
January 25th 2010, 04:36 PM
custom_iplaydink.gif
iplaydink
Peasant He/Him Sweden
Hmm.. 
Awesome, thanks.