Please login or register.

Login with username, password and session length
Advanced search  

News:

IRC channel - server: waelisch.de  channel: #wme (read more)

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Topics - ZaHeR92

Pages: [1]
1
Technical forum / Moving actor by Keyboard?
« on: April 27, 2009, 12:15:07 PM »
Hello friends...

I becomed a tiered from tring to do this...

I want to move my actor by keyboard and I did that ..

Code: [Select]
   if (Keyboard.KeyCode == VK_UP) {
      actor.GoTo(actor.X, actor.Y-50);
   } else if (Keyboard.KeyCode == VK_DOWN) {
      actor.GoTo(actor.X, actor.Y+50);
   } else if (Keyboard.KeyCode == VK_LEFT) {
      actor.GoTo(actor.X-50, actor.Y);
   } else if (Keyboard.KeyCode == VK_RIGHT) {
      actor.GoTo(actor.X+50, actor.Y);

and it works very well ..but I need the other 4 direction UpRight , UpLeft , DownRight and DownLeft...

now I can do that by the space for example:

Code: [Select]
   } else if (Keyboard.KeyCode == VK_SPACE){
      actor.GoTo(actor.X+50, actor.Y+50);

and it works very good
But I want to exchange the space(VK_SPACE) and but Down and Right bottons together on the keyboard..

I tried:

Code: [Select]
   } else if (Keyboard.KeyCode == VK_RIGHT + VK_DOWN){
      actor.GoTo(actor.X+50, actor.Y+50);

but it dos not work..

my question is:

How can I choose two keys on the keyboard must be cleacked together to do event?


2
Technical forum / What is the best resolution ?
« on: April 25, 2009, 11:34:37 AM »
how are you everybody...

I want to ask you a little question...

every PC or laptop have a difrent screen size(height and width) ....

I want the avrage ...because I want my game difinition to be as good as I can ...

or...what is the most popular screens size?

because I want it before I start drowing my game backgrounds..

at least ...thank you for listening...

3
Technical forum / Can WME Games Work on PSP ?
« on: April 13, 2009, 11:09:29 AM »
Hello every body...

I don not no if it is possible or not to play WME games on PSP(sony playstation Portaple)

if there is a way to change some scribt and make it possible...

note : If you know (Adventure Maker) -game making program- in these program it is possible to make PSP game...

but ...  it is too limited program not like WME...

anyway ...I am waiting for you ...If any body can help....see ya

4
Technical forum / Questin On Keyboard Control
« on: April 10, 2009, 12:31:06 PM »
Hello everybody...
first ... I am sory for my bad English... ;D
but I wish you will undersand it...

now ...I Know how to make the actor moving via keyboard ...
but I don not know how to move it from scene to scene without using the mouse...

my actor is moving inside the scene very will

but between 2 scenes I must use the mouse...

can any body tell me how to move the actor from scene to other without using key board...

I mean like in resident evil 1 2 and 3...

thank you for hearing me...

Pages: [1]

Page created in 0.035 seconds with 22 queries.