Miika Posted October 21, 2014 Share Posted October 21, 2014 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 ) Link to comment
Moderators IIYAMA Posted October 21, 2014 Moderators Share Posted October 21, 2014 function giveMinigun() giveWeapon ( client, 38, 5000 ) takePlayerMoney ( client, 15000 ) end addEvent ( "giveMinigun", true ) addEventHandler ( "giveMinigun", resourceRoot, giveMinigun ) Link to comment
Miika Posted October 21, 2014 Author Share Posted October 21, 2014 function giveMinigun() giveWeapon ( client, 38, 5000 ) takePlayerMoney ( client, 15000 ) end addEvent ( "giveMinigun", true ) addEventHandler ( "giveMinigun", resourceRoot, giveMinigun ) thx Link to comment
Moderators IIYAMA Posted October 21, 2014 Moderators Share Posted October 21, 2014 and try to use root instead of resourceRoot. I didn't saw that until now. Link to comment
Mr_Moose Posted October 21, 2014 Share Posted October 21, 2014 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. Link to comment
Moderators IIYAMA Posted October 21, 2014 Moderators Share Posted October 21, 2014 I didn't say he needed to trigger the root. Only in the code he posted here, it will only accept the resourceRoot now. Link to comment
iPanda Posted October 24, 2014 Share Posted October 24, 2014 try function giveMinigun() giveWeapon ( source, 38, 5000 ) takePlayerMoney ( source, 15000 ) end addEvent ( "giveMinigun", true ) addEventHandler ( "giveMinigun", root, giveMinigun ) Link to comment
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now