Jump to content

Las armas no guardan al respawnear T_T


Tomas

Recommended Posts

Oli c:

Hoy estaba haciendo un Respawn en Hospitales para un server, pero tiene un problema :S

Al respawnear pierden las armas, nose que hago mal :(

  
function guardararmas ( ) 
            if ( not playerWeapons [ source ] ) then 
                playerWeapons [ source ] = { } 
            end 
            for slot = 0, 12 do 
                local weapon = getPedWeapon ( source, slot ) 
                if ( weapon > 0 ) then 
                    local ammo = getPedTotalAmmo ( source, slot ) 
                    if ( ammo > 0 ) then 
                        playerWeapons [ source ] [ weapon ] = ammo 
                    end 
                end 
            end 
        end 
    ) 
addEventHandler ("onPlayerWasted",root, guardararmas) 
  

Link to comment
  • Recently Browsing   0 members

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