Jump to content

triggerClientEvent no es llama a función


Recommended Posts

Buenas, como dice el título, ese es mi problema. Aquí está el código:

function imprimir(player, cmd, dinero) 
    triggerClientEvent(player, "modificarmasa", player, masa) 
    outputChatBox("Se han imprimido $" .. dinero.. " pesos") 
end 
addCommandHandler("imprimir", imprimir) 
  

local antiguamasa = 0 
  
function modificarmasa(dinero) 
    if antiguamasa < 1 then 
        masatotal = dinero 
    else 
        masatotal = antiguamasa + dinero 
    end 
    guiSetText(masa, "Masa monetaria: $" .. tostring(masatotal)) 
    antiguamasa = tonumber(masatotal) 
end 
addEvent("modificarmasa", true) 

Espero puedan ayudarme, saludos.

Link to comment

IMPRIMIDO??!?!?!?!

  
    local antiguamasa = 0 
      
    function modificarmasa(dinero) 
        if antiguamasa < 1 then 
            masatotal = dinero 
        else 
            masatotal = antiguamasa + dinero 
        end 
        guiSetText(masa, "Masa monetaria: $" .. tostring(masatotal)) 
        antiguamasa = tonumber(masatotal) 
    end 
    addEvent("modificarmasa", true) 
    addEventHandler("modificarmasa", resourceRoot, modificarmasa) 
  

Link to comment

Nunca enviaste el valor 'dinero' al client.

function imprimir(player, cmd, dinero) 
    if not dinero then return end 
    if ( type(dinero) == "number" ) then 
    triggerClientEvent(player, "modificarmasa", player, dinero); 
    outputChatBox("Se han imprimido $" .. dinero.. " pesos"); 
    end 
end 
addCommandHandler("imprimir", imprimir) 

Link to comment
Nunca enviaste el valor 'dinero' al client.
function imprimir(player, cmd, dinero) 
    if not dinero then return end 
    if ( type(dinero) == "number" ) then 
    triggerClientEvent(player, "modificarmasa", player, dinero); 
    outputChatBox("Se han imprimido $" .. dinero.. " pesos"); 
    end 
end 
addCommandHandler("imprimir", imprimir) 

Sí, me dí cuenta de ese error justo cuando postee, gracias de todas formas.

Problema resuelto, gracias a los dos.

Saludos.

Link to comment
  • Recently Browsing   0 members

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