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

2 questions


emplay
 Share

Recommended Posts

Okay. So, I'm going to do wasd movement.
All I should have to do is go into modinput and change wherever it says

GetAsyncKeyState(VK_LEFT)…right...up.. down
to
etAsyncKeyState(VK_W)...a...s...d

correct?

also im want to disable chat....completely.
how would i go about doing that?

thanks
Link to comment
Share on other sites

@emplay:

> Okay. So, I'm going to do wasd movement.
> All I should have to do is go into modinput and change wherever it says
>
> GetAsyncKeyState(VK_LEFT)…right...up.. down
> to
> etAsyncKeyState(VK_W)...a...s...d
>
> correct?

Yes that is correct.

Also if you want to disable chat, you'd do this;
```
Sub enableChat(Optional chatOff as byte = 0)
    If chatOff = 1 Then
          txtMyChat.Enabled = False
    ElseIf chatOff = 0 Then
          txtMyChat.Enabled = True
    End If
End Sub

```
Also;
@Bonk:

> There's a tutorial for WASD movement. I don't know how or even why you'd do the second.

Sorry if you're too incabable to learn to create it yourself instead of leeching off someone elses tutorial and not learning a thing. Good luck.
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...