Jump to content

Problema con setPedAnimation


Recommended Posts

Bueno, estoy creando un script de "bailarinas" y estoy utilizando tablas para que esté mas optimizado el script. El problema es que a la hora de iniciar el script, realizar el loop para la creación de bots y tal, se crean pero no se le ejecuta la animación puesta.

Server-side

local bailarinas = { 
  
    [1] = { x=1213.94, y= -3.57, z= 1001.32, rotx= 0, roty=0, rotz=50.216522216797 }, 
    [2] = { x=1208.3, y= -7.82, z= 1001.32, rotx=0, roty=0, rotz=179.47265625 }, 
    [3] = { x=1208.29, y= -4.92, z= 1001.32, rotx=0, roty=0, rotz=359.18975830078 }, 
    [4] = { x=1207.58, y= -6.34, z= 1001.32, rotx=0, roty=0, rotz=89.498718261719 }, 
    [5] = { x=1209.02, y= -6.44, z= 1001.32, rotx=0, roty=0, rotz=268.21057128906 } 
} 
  
local bailarina = { } 
  
addEventHandler ( "onResourceStart", resourceRoot, 
    function ( ) 
        for k, data in ipairs ( bailarinas ) do 
            local x, y, z, rotz = data.x, data.y, data.z, data.rotz 
            bailarina[k] = createPed ( 237, x, y, z, rotz ) 
            setElementDimension ( bailarina[k], 204 ) 
            setElementInterior ( bailarina[k], 2 ) 
            setPedAnimation ( bailarina[k], "STRIP", "strip_A" )   
        end 
    end 
) 

Link to comment

Esto puede sonar muy estúpido pero pruebalo así.

bailarina[k] = createPed ( 237, x, y, z) 
setPedRotation(bailarina[k], rotz) 
setPedAnimation ( bailarina[k], "STRIP", "strip_A" )   
setElementDimension ( bailarina[k], 204 ) 
setElementInterior ( bailarina[k], 2 ) 

Link to comment
  • 3 weeks later...
  • Recently Browsing   0 members

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