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 ) 

Real motorbike backflip / frontflip script: https://forum.mtasa.com/viewtopic.php?f=108&t=98191

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

Do you want to improve your Lua programming skills and make less mistakes?   Start with Lua Language Server!   🙀

 

  Useful functions  3x 

  Tutorials  4x 

 

  • Moderators
Posted

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

Do you want to improve your Lua programming skills and make less mistakes?   Start with Lua Language Server!   🙀

 

  Useful functions  3x 

  Tutorials  4x 

 

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

Do you want to improve your Lua programming skills and make less mistakes?   Start with Lua Language Server!   🙀

 

  Useful functions  3x 

  Tutorials  4x 

 

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