posted 11-30- 08:50 PM CT (US)
I made a new girl for my dmod and used all the info from the original girl. The problem is she walks backwards or sideways and then disappears. I thought since I used the same code as the original girl, that she would move the same way. What did I do wrong? This is what I did:
I edited all the original girl graphics and saved as new graphics in a separate folder.
I edited dink.ini by writing:
load_sequence graphics\people\girl\girl1- 851 100 35 45 -19 -10 13 6
load_sequence graphics\people\girl\girl2- 853 100 35 48 -14 -13 13 6
load sequence graphics\people\girl\girl3- 855 100 31 44 -11 -8 18 11
load_sequence graphics\people\girl\girl4- 857 100 33 46 -16 -12 14 7
(I don't know what all these #s mean, I just copied them off the original girl)
I then made a script and attached to the girl:
void main (void)
{
debug ("Making Girl")
preload_seq(851);
preload_seq(853);
preload_seq(855);
preload_seq(857);
sp_base_walk(¤t_sprite,850);
sp_speed(¤t_sprite,1);
sp_timing(¤t_sprite,66);
sp_pseq(¤t_sprite,851);
sp_pframe(¤t_sprite,1);
sp_brain(¤t_sprite,16);
}
I know that was a lot of info, but I hope it will help you in telling me what I have done wrong.
Thanks