View Single Post
  #4  
Old 02-19-2006, 09:29 AM
ZeLpH_MyStiK ZeLpH_MyStiK is offline
Scripter
ZeLpH_MyStiK's Avatar
Join Date: May 2003
Location: NYC
Posts: 553
ZeLpH_MyStiK is on a distinguished road
Send a message via MSN to ZeLpH_MyStiK Send a message via Yahoo to ZeLpH_MyStiK
Example:
PHP Code:
if (created) {
  
setstring this.def,idle,walk,sit,swim;  // define default/setbackto ganis
  
setstring this.new,idle_new,walk_new,sit_new,swim_new;  // define new custom ganis
  
timeout .05;  // initiate timeout
}
if (
timeout) {  // timeout event
  
this.index lindexof(#m,this.def);  // is current gani listed in the list of default ganis?
  
if (this.index >= 0setplayerprop #m,#I(this.new,this.index);  // if it is, set player gani to the corresponding gani in the list of new custom ganis
  
timeout .05;  // continue timeout

__________________
Reply With Quote