Hey everyone...I have been on these forums quite a bit and have learned a lot from the people who have helped me. My game now includes building and other things. Anyhow, I was curious on how to do two things. 1: How to adjust the speed of the players character. and 2: How to make it so objects such as walls/doors/fires cannot be picked up, is there anyway to make the Pickup/Drop verb not affect certain objects?
Again thank you,
Namone
ID:155360
![]() Jul 22 2011, 3:02 pm
|
|
I just wanted to point out that this is the way to make everything speed up. If you want to change the movement speed itself, you're looking at changing the delay between input and movement.
|
Changing the delay between input and movement would only slow down the response time, not the actual movement. Changing the speed of movement itself is a much better option.
A simple example would be: mob/Move() To slow movement down to 2 tiles per second. |
1 is the default setting.
About the second thing you can place a var on objs.
Using 0 for yes, and 1 for no. So when you define the Wall/Door/Fire set canpickup too 1. or however you wish to do it.