Hmm messed around on the movement, changed some stuff and came to this problem (it actually worked before I was changing some stuff).
PHP Code:
function onSetMultiTouchPadGUIs() {
new GuiControl("PadMovement_0") {
useownprofile = true;
width = height = 32;
profile.border = 2;
x = 64;
y = screenheight - 128;
}
new GuiControl("PadMovement_1") {
useownprofile = true;
width = height = 32;
profile.border = 2;
x = 32;
y = screenheight - 96;
}
new GuiControl("PadMovement_2") {
useownprofile = true;
width = height = 32;
profile.border = 2;
x = 64;
y = screenheight - 64;
}
new GuiControl("PadMovement_3") {
useownprofile = true;
width = height = 32;
profile.border = 2;
x = 96;
y = screenheight - 96;
}
thiso.catchevent(this, "onMouseDown", "onMouseDragged");
}
function onMouseDragged(keymode, x, y) {
player.chat = x SPC y;
}