View Single Post
  #6  
Old 06-17-2012, 11:42 PM
ffcmike ffcmike is offline
Banned
Join Date: Jul 2004
Location: London
Posts: 2,029
ffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond repute
Send a message via AIM to ffcmike Send a message via MSN to ffcmike
Then there's probably nothing wrong on your part, again built-in horses are somewhat deprecated. Even on iPhone Classic Stefan scripted custom horses.

You could try creating a custom horse spawner, which then places a horse directly on the player when touched.

You'd have to make a gani copying ridestill.gani without the players character, or experiment with making outfit appear invisible, then do something like:

PHP Code:
function onCreated(){
  
this.showcharacter();
  
this.dontblock();
  
this.horseimg "ridestill.png"//may possibly need to be clientside
  
this.setcharani("nameofgani""");
}

function 
onActionRide(){
  
this.setTimer(10);
  
this.hide();
}

function 
onTimeout(){
  
this.show();
}

//#CLIENTSIDE
function onPlayerTouchsMe(){
  
puthorse(this.horseimgplayer.xplayer.y);
  
triggeraction(this.1this.1"Ride""");
  
this.hide();

Reply With Quote