Javier Posted April 28, 2013 Share Posted April 28, 2013 Hola amigos, desde ayer que tengo problema con el chatBox... Este es mi script outputChatBox("#FF1010LocationX: " ..x, thePlayer, 255, 255, 255, true) Lo tengo como client y cuando sale el mensaje sale todo asi "0FF1010LocationX" asi sale en el chat... alguna forma de arreglarlo? Gracias. Link to comment
Alexs Posted April 28, 2013 Share Posted April 28, 2013 Lo tienes en server side, ¿no? Link to comment
Javier Posted April 28, 2013 Author Share Posted April 28, 2013 Lo tienes en server side, ¿no? No, lo tengo como client... lo que quiero es que cuando el player escriba un comando salga "location ( con el color ) " ..x,etc ,etc Link to comment
Alexs Posted April 28, 2013 Share Posted April 28, 2013 Lo tienes en server side, ¿no? No, lo tengo como client... lo que quiero es que cuando el player escriba un comando salga "location ( con el color ) " ..x,etc ,etc outputChatBox("#FF1010LocationX: " ..x, 255, 255, 255, true) El argumento de jugador no sirve en client side, por eso no te tomaba el ultimo. Link to comment
Javier Posted April 28, 2013 Author Share Posted April 28, 2013 Alexs lo tengo asi , pero me sigue dando el texto asi outputChatBox("#FF1010LocationX: " ..x, thePlayer, 255, 255, 255, true) Link to comment
Alexs Posted April 28, 2013 Share Posted April 28, 2013 Alexs lo tengo asi , pero me sigue dando el texto asi outputChatBox("#FF1010LocationX: " ..x, thePlayer, 255, 255, 255, true) Te repito: No necesitas el 'thePlayer' en client side: outputChatBox("#FF1010LocationX: " ..x, 255, 255, 255, true) Link to comment
Recommended Posts