Jump to content

Ayuda - Anim ped


Matty

Recommended Posts

Posted

Ayuda, por favor; No me devuelve el anim ._.

Code:

function myped (source) 
    
faBlockz = getElementData (root,"blockz") 
faAnimz = getElementData (root,"animz") 
       if faBlockz == "SMOKING" and faAnimz == "F_smklean_loop" then 
             setPedAnimation (source,false) 
       else 
             setPedAnimation (source, "SMOKING", "F_smklean_loop", 300, true, false, false, true ) 
  
    end 
  
end 
addCommandHandler ( "smoke", myped ) 

mattybanner.jpg

...Learning Scripting...

State: Rookie, Noob

[AP3]=Matty!=

My Skype: mattias.netz

Posted

Estas intentando hacer que si esta haciendo la animacion, la deje de hacer, y si no, la empieze a hacer?

San Andreas Utopia RPG (SAUR) Owner & Developer.

560x95_FFFFFF_FF9900_000000_000000.png

Education is the most powerful weapon which you can use to change the world.

Posted
Estas intentando hacer que si esta haciendo la animacion, la deje de hacer, y si no, la empieze a hacer?

Exactamente exacto (:

mattybanner.jpg

...Learning Scripting...

State: Rookie, Noob

[AP3]=Matty!=

My Skype: mattias.netz

Posted
function myped ( thePlayer ) 
    setElementData ( thePlayer, "smoking", not getElementData ( thePlayer, "smoking" ) ) 
    if ( getElementData ( thePlayer, "smoking" ) ) then 
        setPedAnimation ( thePlayer ) 
    else 
        setPedAnimation ( thePlayer, "SMOKING", "F_smklean_loop" ) 
    end 
end 
addCommandHandler ( "smoke2", myped ) 

Probalo.

San Andreas Utopia RPG (SAUR) Owner & Developer.

560x95_FFFFFF_FF9900_000000_000000.png

Education is the most powerful weapon which you can use to change the world.

Posted

Lo pusiste como server side, no?

San Andreas Utopia RPG (SAUR) Owner & Developer.

560x95_FFFFFF_FF9900_000000_000000.png

Education is the most powerful weapon which you can use to change the world.

Posted

Si, server side, y en el debug no hay errores. :?

mattybanner.jpg

...Learning Scripting...

State: Rookie, Noob

[AP3]=Matty!=

My Skype: mattias.netz

Posted

Ok, copialo de nuevo, lo probe y funciona.

San Andreas Utopia RPG (SAUR) Owner & Developer.

560x95_FFFFFF_FF9900_000000_000000.png

Education is the most powerful weapon which you can use to change the world.

Posted

Bien, Gracias Solid, ahora te pregunto, en la linea 6, se le puede agregar los argumentos opcionales? porque se va para todos lados el ped :roll:.

mattybanner.jpg

...Learning Scripting...

State: Rookie, Noob

[AP3]=Matty!=

My Skype: mattias.netz

Posted

Solo los necesarios, porque esa era la cause de no poder parar la animacion.

San Andreas Utopia RPG (SAUR) Owner & Developer.

560x95_FFFFFF_FF9900_000000_000000.png

Education is the most powerful weapon which you can use to change the world.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...