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

I can walk with the other ways in Eclipse Origins?


ShlomiNet
 Share

Recommended Posts

-sigh- Since I have the time I will, but try to find things for yourself when you need to. Yes, this board is for questions but not everyone can hand things to you.

Here it is;

http://www.touchofdeathforums.com/smf/index.php/topic,68596.0.html
Link to comment
Share on other sites

I don't know what is wrong with your right arrow key. Either you need to replace your keyboard or unfuck your source code. You could change the movement keys to WASD but I'm sure that is beyond you. You can't make a game in EO if you don't know how to use VB6 & you will never know unless you try. No one here is going to do it for you.
Link to comment
Share on other sites

well what problem with VB6?
i know how to make game in eclipse origins its easy…
but look i dont really understand ,Like now i have in FrmMain.frm :Call Txtmychat
so i dont know where i need copy the thing i have to...
have more simple way or you can help me?
Link to comment
Share on other sites

It's hard for me to understand what you mean, but it sounds like you need to understand at least some basics of the vb6 programming language.

http://lmgtfy.com/?q=learn+vb6

Knowing where to make edits in the source code depends upon this, especially if you are not able to follow a tutorial.

This is the only way to finish your EO game because no doubt you will want to edit the source again in the future.

Btw I'm not sure if that tutorial works perfectly in EO2.0 but read it, study it, understand it, apply it, repeat if necessary.
Link to comment
Share on other sites

Find this in modInput under CheckInputKeys or search for it Ctrl + F.

```
    'Move Right
    If GetKeyState(vbKeyRight) < 0 Then
        DirUp = False
        DirDown = False
        DirLeft = False
        DirRight = True
        Exit Sub
    Else
        DirRight = False
    End If

```
Change vbKeyRight to any key in this list.
http://msdn.microsoft.com/en-us/library/aa243025%28v=vs.60%29.aspx
Although I do not believe this is the best solution…
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...