BASE WALK
WAT IS IT ALL ABOUT, WHY DO U HAVE TO USE A MULTIPLY OF TEN WHY CAN I JUST HAVE THE WALKIN GRAPHICS IN ONE SEQUENCE AND PUT IN THAT SEQUENCE TO MAKE IT WORK.
The game uses the basewalk numbers to determine the sequences to use when a character/foe walks/fights/etc. For example, when a character has basewalk 350, when he walks to the bottomleft, his sequence is 351. When he walks south, his sequence is 352. You can use the numpad to see what number you need. So if you have graphics for a character, you'll need to place the graphics in sequences according to this system (so the graphics for walking left go in 354, up in 358).
Now, because you don't want to specify all 10 sequences for every character/foe, the game uses the basewalk (a multiple of 10, like 350) and it then calculates the sequence to use when the character/foe walks. If he decides to walk to the upper-right corner and his basewalk is 350, then the engine 'knows' to use sequence 359 (or, basewalk + 9).
Now, because you don't want to specify all 10 sequences for every character/foe, the game uses the basewalk (a multiple of 10, like 350) and it then calculates the sequence to use when the character/foe walks. If he decides to walk to the upper-right corner and his basewalk is 350, then the engine 'knows' to use sequence 359 (or, basewalk + 9).
so in my dmod i have a graphic of a penguin and him walkin, so how many sequences wouold i need to have him walk any where on the scren?
Optimally eight, possibly four. Eight when you're doing one for each direction (north(8), east(6), south(2), west(4) and combinations of those; northeast(9), south-east(3), southwest(1) and northwest(7)). You could also do 4 (the diagonal directions) and let the pinguin only walk diagonally, like NPC characters (more common for NPCs).
You can use the numpad to see what number you need
Why nobody told me this before? I had to figure it out myself, and several times I was frustrated because I didn't write the move command properly. Sometimes, I'm such an idiot.
Why nobody told me this before? I had to figure it out myself, and several times I was frustrated because I didn't write the move command properly. Sometimes, I'm such an idiot.