Edit: I suppose the thread should actually be level.tilelayers[0].z ..... crap
I've been wondering for quite some time now why it is that a simple script like this automatically gives someone the ability to walk over tiles.
PHP Code:
//#CLIENTSIDE
function onPlayerEnters() {
level.tilelayers[0].z=1; //Moves the z value up one
level.tilelayers[0].y=1; //Moves Y down one so the level still looks the same.
}
I mean....seriously now....is there a point to this? The tiles dont even draw over the player so to yourself and everyone around you, you're just plain wall-hacking.
And isn't it unsafe to have this clientside anyway...? I'm not too familiar with hacking tools.