Jump to content

Problem. Help me pls.


Theodor

Recommended Posts

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

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