Jump to content

Save Weapopns


boro

Recommended Posts

Hi i have this script for save Weapon

When i wasted then it work good but when i reconect then my weapon dont are saved why? help pls..

function onPlayerQuit ( ) 
    local playeraccount = getPlayerAccount ( source ) 
    if ( playeraccount ) then 
        for weapon = 0, 12 do 
            setAccountData ( playeraccount, "s.weap".. weapon, getPedWeapon ( source, weapon ) ) 
            setAccountData ( playeraccount, "s.ammo".. weapon, getPedTotalAmmo ( source, weapon ) ) 
        end 
    end 
end 
addEventHandler ( "onPlayerQuit", getRootElement ( ), onPlayerQuit ) 
  
addEventHandler ( "onPlayerLogin", root, 
    function ( _, playeraccount ) 
        for weapon = 0, 12 do 
            local weap = getAccountData ( playeraccount, "s.weap".. weapon ) 
            local ammo = getAccountData ( playeraccount, "s.ammo".. weapon ) 
            giveWeapon ( source, weap, ammo ) 
        end 
    end 
) 
  
  
local playerWeapons = { } 
  
addEventHandler ( "onPlayerWasted", root, 
    function ( ) 
        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 ( "onPlayerSpawn", root, 
    function ( ) 
        if ( playerWeapons [ source ] ) then 
            for weapon, ammo in pairs ( playerWeapons [ source ] ) do 
                giveWeapon ( source, tonumber ( weapon ), tonumber ( ammo ) ) 
            end 
        end 
  
        playerWeapons [ source ] = nil 
    end 
) 
  

Link to comment

Ok now show it this

  
[2014-08-03 20:54:21] INFO: s.weap data: 0 
[2014-08-03 20:54:21] INFO: s.ammo data: 1 
[2014-08-03 20:54:21] INFO: s.weap data: 0 
[2014-08-03 20:54:21] INFO: s.ammo data: 0 
[2014-08-03 20:54:21] INFO: s.weap data: 0 
[2014-08-03 20:54:21] INFO: s.ammo data: 0 
[2014-08-03 20:54:21] INFO: s.weap data: 0 
[2014-08-03 20:54:21] INFO: s.ammo data: 0 
[2014-08-03 20:54:21] INFO: s.weap data: 0 
[2014-08-03 20:54:21] INFO: s.ammo data: 0 
[2014-08-03 20:54:21] INFO: s.weap data: 30 
[2014-08-03 20:54:21] INFO: s.ammo data: 270 
[2014-08-03 20:54:21] INFO: s.weap data: 0 
[2014-08-03 20:54:21] INFO: s.ammo data: 0 
[2014-08-03 20:54:21] INFO: s.weap data: 0 
[2014-08-03 20:54:21] INFO: s.ammo data: 0 
[2014-08-03 20:54:21] INFO: s.weap data: 0 
[2014-08-03 20:54:21] INFO: s.ammo data: 0 
[2014-08-03 20:54:21] INFO: s.weap data: 0 
[2014-08-03 20:54:21] INFO: s.ammo data: 0 
[2014-08-03 20:54:21] INFO: s.weap data: 0 
[2014-08-03 20:54:21] INFO: s.ammo data: 0 
[2014-08-03 20:54:21] INFO: s.weap data: 0 
[2014-08-03 20:54:21] INFO: s.ammo data: 0 
[2014-08-03 20:54:21] INFO: s.weap data: 0 
[2014-08-03 20:54:21] INFO: s.ammo data: 0 

Link to comment

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

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