View Single Post
  #6  
Old 11-22-2011, 10:43 PM
callimuc callimuc is offline
callimuc's Avatar
Join Date: Nov 2010
Location: Germany
Posts: 1,015
callimuc is a splendid one to beholdcallimuc is a splendid one to beholdcallimuc is a splendid one to beholdcallimuc is a splendid one to beholdcallimuc is a splendid one to behold
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;
    
64;
    
screenheight 128;
  }

  new 
GuiControl("PadMovement_1") {
    
useownprofile true;
    
width height 32;
    
profile.border 2;
    
32;
    
screenheight 96;
  }

  new 
GuiControl("PadMovement_2") {
    
useownprofile true;
    
width height 32;
    
profile.border 2;
    
64;
    
screenheight 64;
  }

  new 
GuiControl("PadMovement_3") {
    
useownprofile true;
    
width height 32;
    
profile.border 2;
    
96;
    
screenheight 96;
  }
  
thiso.catchevent(this"onMouseDown""onMouseDragged");
}

function 
onMouseDragged(keymodexy) {
  
player.chat x SPC y;

__________________
MEEP!
Reply With Quote