DarkAruna97 Posted August 26, 2014 Share Posted August 26, 2014 Hola a todos quisiera saber en donde esta la falla porque al precionar F10 no salta el Cuadro del Bin Key si alguien me ayuda le paso el resource completo con el Client y el Server. function showPanel2(thePlayer) accountname = getAccountName (getPlayerAccount(thePlayer)) if isObjectInACLGroup ( "user." .. accountname, aclGetGroup ( "VIP" ) ) then triggerClientEvent (thePlayer, "ShowGUI", getRootElement()) else outputChatBox("#ff6464Solo usuarios V.I.P pueden abrir el Panel Vip.",thePlayer,255,125,0,true) end end function onResStart () for index, player in ipairs ( getElementsByType ( "player" ) ) do bindKey ( player, "F10", "down", showPanel2 ) end end addEventHandler ( "onResourceStart", getResourceRootElement ( getThisResource() ), onResStart) function onPlayerJoin () bindKey ( source, "F10", "down", showPanel2 ) end addEventHandler ( "onPlayerJoin", getRootElement(), onPlayerJoin) function cleanAll (player) for index, player in ipairs ( getElementsByType ( "player" ) ) do unbindKey ( player, "F10", "down", showPanel2 ) end end addEventHandler ( "onResourceStop", getResourceRootElement ( getThisResource() ), cleanAll) Link to comment
DarkAruna97 Posted August 27, 2014 Author Share Posted August 27, 2014 Estas en el ACL "VIP"? si, si estoy en el ACL, pero al precionar F10 no salta el cuadro osea el menu del vip Link to comment
AlFA# Posted August 27, 2014 Share Posted August 27, 2014 Estas en el ACL "VIP"? si, si estoy en el ACL, pero al precionar F10 no salta el cuadro osea el menu del vip ¿Te sale algún error en el /debugscript 3? Link to comment
DarkAruna97 Posted August 27, 2014 Author Share Posted August 27, 2014 Listo ya lo solucione, otra cosa una pregunta Como tendria que hacer para que este mensaje que sale al sacarse cosas al panel lo puedan leer todo, Es decir que salga en chat publico o Global Chat, para que todos se den cuenta que tal usuario se esta giveando tal cosa del panel porque ya logre que salga el nombre con el ..name.. function BuyWeaponOnServer(weapon_name,data,value) name = getPlayerName ( source ) if(weapon_name == "Equiparme") then setElementData(source, "MAX_Slots" , 125) setElementData(source, "CZ 550", 1) setElementData(source, "CZ 550 Mag", 25) setElementData(source, "M4", 1) setElementData(source, "M4 Mag", 260) setElementData(source, "Milk", 2) setElementData(source, "Pizza", 2) setElementData(source, "Medic Kit", 2) setElementData(source, "Morphine", 2) setElementData(source, "Blood Bag", 1) setElementData(source, "Infrared Goggles", 1) setElementData(source, "Civilian[F] Clothing", 1) setElementData(source, "Map", 1) setElementData(source, "GPS", 1) setElementData(source, "Toolbox", 1) setElementData(source, "PDW", 1) setElementData(source, "PDW Mag", 100) setElementData(source, "Night Vision Goggles", 1) setElementData(source, "Radio Device", 1) setElementData(source, "Watch", 1) outputChatBox("#FFff00[VIP-#ff0000"..name.."] #FFFFFFHa usado el equipo automatico", source, 255, 255, 255 , true) end Link to comment
DarkAruna97 Posted August 27, 2014 Author Share Posted August 27, 2014 una pregunta asi sirve? outputChatBox("#FFff00[VIP-#ff0000"..name.."#FFff00] #FFFFFFUsted ha usado el Kit de Vip", getRootElement(), 255, 255, 255 , true) Link to comment
Tomas Posted August 27, 2014 Share Posted August 27, 2014 una pregunta asi sirve? outputChatBox("#FFff00[VIP-#ff0000"..name.."#FFff00] #FFFFFFUsted ha usado el Kit de Vip", getRootElement(), 255, 255, 255 , true) Debería funcionar, pero... ¿ no quedaría un poco estúpido que diga [VIP-Pedro] Usted ha usado el Kit de Vip ? Si lo pusieras en global debería decir [VIP-Pedro] Ha usado el kit de Vip, es una opinión nada más. Link to comment
DarkAruna97 Posted August 27, 2014 Author Share Posted August 27, 2014 una pregunta asi sirve? outputChatBox("#FFff00[VIP-#ff0000"..name.."#FFff00] #FFFFFFUsted ha usado el Kit de Vip", getRootElement(), 255, 255, 255 , true) Debería funcionar, pero... ¿ no quedaría un poco estúpido que diga [VIP-Pedro] Usted ha usado el Kit de Vip ? Si lo pusieras en global debería decir [VIP-Pedro] Ha usado el kit de Vip, es una opinión nada más. Si dsp me di cuenta de enviarlo jaja, porque tengo 2 carpetas iguales que una la subi y la otra la estoy editando para ver en mi sv local. Link to comment
Recommended Posts