Jump to content

Crear funciones random


Recommended Posts

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
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
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...