Quote:
Originally Posted by defaultaccount
I'm trying to get this to work I'm not setting the variable right can someone help please
NPC Code:
function OnCreated () {
this.idle = "pb_mp5navy-idle";
setani(this.idle, null);
}
|
PHP Code:
//#CLIENTSIDE
function onCreated () {
this.idle = "walk";
setani(this.idle, null);
}
Works for me, tho I tend to do
temp.idle rather then
this.idle out of habbit because sometimes this.variables can conflict with the object itself.