Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

[SKY] Speed


Janito
 Share

Recommended Posts

I think shift is walking :)

```
          ' Check if player has the shift key down for running

           If ShiftDown Then
               Player(MyIndex).Moving = MOVING_WALKING
           Else
               Player(MyIndex).Moving = MOVING_RUNNING
           End If
```
Link to comment
Share on other sites

That's code he plucked from the source, basically what it means is that when you hold shift you'll start walking. Without holding shift you're sprinting. If you turn the WALKING and RUNNING around you'll walk by default and sprint when you hold Shift.
Link to comment
Share on other sites

If you look for the following code:
```
' Check if player has the shift key down for running

If ShiftDown Then
Player(MyIndex).Moving = MOVING_WALKING
Else
Player(MyIndex).Moving = MOVING_RUNNING
End If
```
and switch around MOVING_WALKING and MOVING_RUNNING in the client it should work, if I recall.
Link to comment
Share on other sites

First off, if you don't have a copy of VB6 (Visual Studios 2008, 2010, etc. will NOT work), then go find a copy (pirating is "bad" but about the only way to get it). Second, install VB6, then open the client.vbp with VB6, and finally, do what Joyce is saying and then click the File tab and click Compile (then save over the old client)
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...