Plate Posted April 30, 2013 Posted April 30, 2013 Hola alguien me podria decir por que esto no anda function useItemHealth() local row, col = guiGridListGetSelectedItem ( itemGrid ) if ( row and col and row ~= -1 and col ~= -1 ) then local itemH = guiGridListGetItemText ( itemGrid, row, 1 ) if (itemH == "Vida") then setElementHealth(localPlayer, 100) end end end addEventHandler("onClientGUIClcik", Usar, useItemHealth, false)
Plate Posted April 30, 2013 Author Posted April 30, 2013 Sigue sin funcionar function useItemHealth() local row, col = guiGridListGetSelectedItem ( itemGrid ) if ( row and col and row ~= -1 and col ~= -1 ) then local itemH = guiGridListGetItemText ( itemGrid, row, 1 ) if (itemH == "Vida") then setElementHealth(localPlayer, 100) end end end addEventHandler("onClientGUIClick", UsarI, useItemHealth, false)
Renkon Posted April 30, 2013 Posted April 30, 2013 Porque no debuggeas linea por línea asi te das cuenta que puede llegar a estar mal?
Plate Posted April 30, 2013 Author Posted April 30, 2013 probe usando un trigger y en el trigger use un outputChatBox pero el chatBox no funciona supongo que deve ser en el "itemH"
Recommended Posts