Jakepankeke Posted June 1, 2015 Share Posted June 1, 2015 Bueno tengo una duda muy grande asi que si me pueden ayudar? Se supone que al poner el comando se elija un texto entre ya determinado: Bueno pero al poner el comando no me deja osea elije el numero a lazar pero elije toda las opciones dadas function verlec(client) leccionboss = math.random (1,3) if leccionboss >= 1 then outputChatBox ("eleccion 1 hecha",client, 255, 255, 0) if leccionboss >= 2 then outputChatBox ("eleccion 2 hecha",client, 0, 255, 0) if leccionboss >= 3 then outputChatBox ("eleccion 3 hecha",client, 0, 255, 0) end end end end addCommandHandler ( "eleccion", verlec) Link to comment
Arsilex Posted June 1, 2015 Share Posted June 1, 2015 function verlec(client) local leccionboss = math.random (1,3) if leccionboss == 1 then outputChatBox ("eleccion 1 hecha",client, 0, 255, 0) elseif leccionboss == 2 then outputChatBox ("eleccion 2 hecha",client, 0, 255, 0) else outputChatBox ("eleccion 3 hecha",client, 0, 255, 0) end end addCommandHandler ( "eleccion", verlec) Link to comment
Recommended Posts