sro AYDP emu PROject 13 14 dg emulator

12/29/2012 16:32 kevin_owner#16
Quote:
Originally Posted by Tunilicious View Post
Code something yourself smart ass and then release it. Not everyone like to giveaway everything for free. ^^



Actually you are wrong about that C# is not optimal choice for the game server. It actually is good choice (you will spend less time on the coding low level stuff, time = money, for money u can buy or upgrade machines).

About sky clicking. It's as easy as other types of movement.
You just calculate velocity by given angle.
Do not underestimate the skyclicking mechanism, it sounds easy just calculating the next position but you'll need to have a fully working collision system. Why? Well you can calculate the new position but what happens if the player ran into a building? the client would just notice it and stop walking but the server thinks it's just walking. So the movement updates to all the other clients in range continue.

That'll cause nothing but problems. (Same with the normal walking but the consequences are much smaller, although you would still have stuck characters if their last click was in an object or outside the walkable area.)
12/29/2012 20:37 Tunilicious#17
Quote:
Originally Posted by kevin_owner View Post
Do not underestimate the skyclicking mechanism, it sounds easy just calculating the next position but you'll need to have a fully working collision system. Why? Well you can calculate the new position but what happens if the player ran into a building? the client would just notice it and stop walking but the server thinks it's just walking. So the movement updates to all the other clients in range continue.

That'll cause nothing but problems. (Same with the normal walking but the consequences are much smaller, although you would still have stuck characters if their last click was in an object or outside the walkable area.)
Yes i know that. I'm just said that sky clicking isn't harder to implement than other types of movement. For all types of movement you need to check collision :P But when you got collisions covered then sky clicking is simple.
01/06/2013 14:33 Whitex3#18
Hmm nice nice. But i have normal server :D in tSro file xDDD