JuanM27 Posted June 17, 2012 Share Posted June 17, 2012 hola buenas noches, estoy queriendo hacer un bindkey con la tecla Mayuscula pero no encuentro el key correspondiente. me fije en la wiki Key_names pero no encuentro cual es la mayuscula si alguien lo sabe por favor me lo dice, muchas gracias Link to comment
JuanM27 Posted June 17, 2012 Author Share Posted June 17, 2012 Hola Solid, la verdad muchas gracias siempre ayudandome. aprovecho para preguntarte por que no me anda el bindkey (en el server-side) lo tengo asi function bin(player) bindKey(player,"capslock", "down", "lsultan") end addEventHandler("onResourceStart", getResourceRootElement(getThisResource()), bin) y me sale este warning en debugscript 3 Warning: .....: Bad 'player' pointer @ 'bindKey'(1) Link to comment
Castillo Posted June 17, 2012 Share Posted June 17, 2012 "player" no esta definido. Para bindear la tecla tenes que hacer un for-loop con los jugadores online y ahi bindearla. Link to comment
JuanM27 Posted June 17, 2012 Author Share Posted June 17, 2012 muchas gracias Solid lo hice asi function bin() for id, player in ipairs(getElementsByType("player")) do bindKey(player,"capslock", "down", "lsultan") end end addEventHandler("onResourceStart", getResourceRootElement(getThisResource()), bin) y funciono perfecto puedes cerrar el tema y muchas gracias de verdad Link to comment
Castillo Posted June 17, 2012 Share Posted June 17, 2012 De nada. No hay porque cerrarlo, otro podria tener el mismo problema. Link to comment
Recommended Posts