mob |
Problem description:
Gear Golem Effects System.dm:9:error: get_steps: undefined proc
any tips on how i should go about solving this error?
ID:139272
Apr 4 2011, 12:20 pm
|
||
Code:
Problem description: Gear Golem Effects System.dm:9:error: get_steps: undefined proc any tips on how i should go about solving this error? | ||
#1 Apr 4 2011, 2:31 pm
|
|
get_steps is not a built in proc, try get_step or get_step_rand
| |
#3 Apr 5 2011, 12:21 am
|
||
actually, you shouldn't be doing this at all. Use client.pixel_* to modify the focus. This provides a faster and easier way to jiggle the screen.
Ex:
With this, the intensity and length of the shakes can be easily modified. | ||
#4 Apr 5 2011, 1:20 am
|
|
Just for reference, get_steps() is a common process included in several libraries.
You can get one implementation of it here: (cleanest I've seen so far) http://www.byond.com/members/Jtgibson/forum?id=204#204 It's also included in this library: (which is most likely what the source of that code was using) http://www.byond.com/developer/AbyssDragon/BasicMath | |