aintaro Posted March 29, 2014 Share Posted March 29, 2014 (edited) local shop1 = createMarker ( 1930, -1776, 12.5, "cylinder", 1.5, 255, 255, 0, 170 ) function duty(thePlayer, matchingDimension) if isElementWithinMarker(thePlayer, shop1) then giveWeapon(thePlayer, 22, 100, 1) else outputChatBox("You are not at the right place!", thePlayer, 255, 0, 0) end end addCommandHandler("duty", duty) This is what I have and it does not work, it keeps returning "You are not at the right place" even tho I'm on the exact spot where the marker is created, Any help? edit: I'm doing this client sided Thanks in advance, Aintaro Edited March 29, 2014 by Guest Link to comment
Karuzo Posted March 29, 2014 Share Posted March 29, 2014 giveWeapon is a server-side function so this won't work. Link to comment
Castillo Posted March 29, 2014 Share Posted March 29, 2014 @aintaro: addCommandHandler client-side has no player argument, use 'localPlayer'. Link to comment
aintaro Posted March 29, 2014 Author Share Posted March 29, 2014 I should of knoww that the client side did not send a parameter "thePlayer", Thanks for that solidsnake14. 1 as for the giveWeapon function I did not know that it was server sided only, so thanks aswell KRZO. Greetz, Aintaro 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