@Connect Posted May 18, 2014 Share Posted May 18, 2014 Speaking staff; Well I have a server MTA DayZ and was wondering how do i add an animation when the player opens the inventory (animation squat), I already have a code but does not work, the code is this: --Code function showInventory(key, keyState) if getElementData(getLocalPlayer(), "logedin") and keyState == "down" then guiSetVisible(inventoryWindows, not guiGetVisible(inventoryWindows)) showCursor(not isCursorShowing()) refreshInventory() if guiGetVisible(inventoryWindows) == true then onClientOpenInventoryStopMenu() setPedAnimation(source, "BOMBER", "BOM_Plant_Crouch_Out", nil, false, false, false, true) else hideRightClickInventoryMenu() setPedAnimation(source, "BOMBER", "BOM_Plant_Loop", nil, false, false, nil, false) end if isPlayerInLoot() then local col = getElementData(getLocalPlayer(), "currentCol") local gearName = getElementData(getLocalPlayer(), "lootname") refreshLoot(col, gearName) end end end bindKey("j", "down", showInventory) function showInventoryManual () guiSetVisible(inventoryWindows,not guiGetVisible(inventoryWindows)) showCursor(not isCursorShowing()) refreshInventory() if guiGetVisible(inventoryWindows) == true then onClientOpenInventoryStopMenu () end end Link to comment
Castillo Posted May 18, 2014 Share Posted May 18, 2014 Do you have permission to use the non-compiled DayZ code? Link to comment
@Connect Posted May 18, 2014 Author Share Posted May 18, 2014 Yes, my friend acquired a0.4 with the Official Map, my server is kinda old but many things are updated; If you want proof I can talk to my friend think he should still have. Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now