Jump to content

What? giveWeapon and takePlayerMoney not working


Miika

Recommended Posts

Posted

My weapon shop panel not working. There is error with takePlayerMoney giveWeapon.

[server]

function giveMinigun(minigunPlayer) 
    giveWeapon ( minigunPlayer, 38, 5000 ) 
    takePlayerMoney ( minigunPlayer, 15000 ) 
end 
addEvent ( "giveMinigun", true ) 
addEventHandler ( "giveMinigun", resourceRoot, giveMinigun ) 

  • Moderators
Posted
function giveMinigun() 
        giveWeapon ( client, 38, 5000 ) 
        takePlayerMoney ( client, 15000 ) 
    end 
    addEvent ( "giveMinigun", true ) 
    addEventHandler ( "giveMinigun", resourceRoot, giveMinigun ) 

Posted
function giveMinigun() 
        giveWeapon ( client, 38, 5000 ) 
        takePlayerMoney ( client, 15000 ) 
    end 
    addEvent ( "giveMinigun", true ) 
    addEventHandler ( "giveMinigun", resourceRoot, giveMinigun ) 

thx

Posted
and try to use root instead of resourceRoot. I didn't saw that until now.

resourceRoot reduces the CPU usage compared to root but in some cases a higher level element will be needed, it's individual from case to case, try and see what's working and not.

  • Moderators
Posted

I didn't say he needed to trigger the root.

Only in the code he posted here, it will only accept the resourceRoot now.

Posted

try

function giveMinigun() 
    giveWeapon ( source, 38, 5000 ) 
    takePlayerMoney ( source, 15000 ) 
end 
addEvent ( "giveMinigun", true ) 
addEventHandler ( "giveMinigun", root, giveMinigun ) 

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...