Actually, what went wrong is that if I centered it again, it went black then, but if I used the look commands it would return it to normal, but still not be centered.
And, it would lock up my commands, so I couldn't shoot.
I dont know why that would happen... if it affected your shooting commands then thats a problem with the shooting code, remember that if you're using the view() command in your shooting proc, it might cause some problems since what the user can see isnt what the eye can see when the eye is moved. Also, i dont see why it would make your screen go black, if the eye goes to a coordinate out of the maps bounds then yes it'll turn black, but like I said you should add some checking code that makes sure that isnt possible.
If you post your code I could help more. |
Alrighty
mob/Player/Login() Huh? Well, the verbs are working again, but it still blacks out on centering. |
Its blacking out because you're setting the user's eye to source, and source isnt the user, it's the arrow. Generally using usr in any proc is bad, but you can usually get away with it in Click(), try changing it to usr.client.eye = usr and see what happens.
|
Gr.. nevermind. It still has the limits on it. My gun's range is at 999 (for testing) but it's still thinking that it needs to be within my usual sight.
|
fattack() |
Try switching view to orange, view is a list of objects visible from the source, orange is just a list of objects within the specified distance of the source.
|
Keep in mind that procs such as <code>view()</code>, <code>oview()</code>, <code>viewers()</code>, <code>oviewers()</code>, <code>range()</code>, <code>orange()</code>, <code>hearers()</code>, <code>ohearers()</code> (etc.) but also procs such as <code>input()</code> and <code>alert()</code> take usr as their default. usr might not be what you want in this case, so you should at least set it to src as a sanity check incase something goes wrong.
|
client.eye.perspective doesnt belong to anyone, you'd have to give it src.client.eye.perspective. However this only requires setting it once, so its good to just do it at login, the login command automatically assumes any variables being altered belong to the mob that just logged in, which is why you dont need src or usr as a prefix, you can just use client.eye.perspective = EYE_PERSPECTIVE.