Originally Posted by
thyronkyle
Hi Shimizoki, is there any way I could make my guy move a few yards more when going to the 3rd waypoint?
everything is running perfectly, aside from the fact that it walks straight to the wall and can't go inside the cellar.
Before editing the script... double check the movement speed in the INI aswell as that you have the right build... 99% of the time the error is in the settings.
Originally Posted by
Gutinat0r
Try a higher value at line 183 Moving(1875) and change it to Moving(2100) and see if it helps. Did for me.
@Shimizoki Is there a way to increase the rate at which it checks for the lost connection error? Had it a second time just now. It does detect it, but it takes it's sweet time (both times happened when hitting leave game)
Dont advise script editing until after the other troubleshooting. Most of the time that just leads to problems that will return with the next update because they werent fixed properly (via settings)
Also, yes there is. And this one isnt a setting. (Line 320)
Code:
If CheckFor("MainMenu","",0*$x_ratio,360*$y_ratio,480*$x_ratio,480*$y_ratio)Then
Change it to
Code:
If CheckFor("MainMenu","",0*$x_ratio,360*$y_ratio,480*$x_ratio,480*$y_ratio, 5)Then
The 5 is how many seconds it waits looking for the main menu (Which is where you should be) before looking for why you arent there. If you consistently can get from logout to main menu in under 5 seconds then making it shorter wont cause any harm. otherwise it takes 10 seconds to notice the window is there.