Theodor Posted March 10, 2018 Share Posted March 10, 2018 I have a problem. I wanted to make a script that will give out the machine to the player and at the same time put it in it. But I could not see the debug script I was able to get it out. **** Bad argument @ @ warpPedIntoVehicle @ [Expected ped at argument 1, got string "give" **** How can I fix this? Here is the code of my script **** function givecar (Player) local x, y, z = getElementPosition (Player) local car = createVehicle (411, x, y, z) warpPedIntoVehicle (Player, car) end addCommandHandler ("give", givecar) Link to comment
Storm-Hanma Posted March 10, 2018 Share Posted March 10, 2018 (edited) i dont see any erros for my side of testing it working fine !! Edited March 10, 2018 by Khadeer143 1 Link to comment
DNL291 Posted March 11, 2018 Share Posted March 11, 2018 If the "Player" parameter is returning the command name then I assume your script is client-side. Change it to server and it should work. Link to comment
Storm-Hanma Posted March 12, 2018 Share Posted March 12, 2018 Its working fine by server side I test it already 1 Link to comment
MrBiG Posted March 14, 2018 Share Posted March 14, 2018 function givecar ( ) local x , y , z = getElementPosition ( source ) local car = createVehicle ( 411 , x , y , z ) warpPedIntoVehicle ( source , car ) end addCommandHandler ( "give" , givecar ) you have to add this script in server said 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