function vehicle(source, model, command)if(tonumber(model) < 400 or tonumber(model) > 611) thenoutputChatBox(\"Nem található ilyen jármű id!\", source)elselocal x, y, z = getElementPosition(source)createVehicle(model, x+3, y, z+2)outputChatBox(\"Jármű sikeres spawnolása!\", source)endendaddCommandHandler(\"cv\", getRootElement(), vehicle)
function vehicle(thePlayer, cmd, model)if(tonumber(model) < 400 or tonumber(model) > 611) thenoutputChatBox(\"Nem található ilyen jármű id!\", thePlayer, 255, 255, 255)elselocal x, y, z = getElementPosition(thePlayer)createVehicle(model, x+3, y, z+2)outputChatBox(\"Jármű sikeres spawnolása!\", thePlayer, 255, 255, 255)endendaddCommandHandler(\"cv\", vehicle)
function kocsiSpawn(thePlayer, vehId)local rvehid = tonumber(vehId)local x,y,z = getElementPosition(thePlayer)if(rvehid < 400 or rvehid > 611) thenoutputChatBox(\"Nem létezik ilyen ID!\", thePlayer, 255, 255, 255)elselocal playerveh = createVehicle(rvehid, x,y,z)warpPedIntoVehicle(thePlayer,playerveh)outputChatBox(\"A jármű lerakva!\", thePlayer, 255, 255, 255)endendaddCommandHandler(\"kocsi\",kocsiSpawn )
function kocsispawn(thePlayer, command, vehicleModel)local x,y,z = getElementPosition(thePlayer)x = x + 5local kocsiadd = createVehicle(tonumber(vehicleModel),x,y,z)if (kocsiadd == false) thenoutputChatBox(\"Nem sikerült spawnolni az autót!\")endendaddCommandHandler(\"kocsiadd\", kocsispawn)
function kocsispawn(thePlayer, command, vehicleModel)local x,y,z = getElementPosition(thePlayer)x = x + 5local kocsiadd = createVehicle(tonumber(vehicleModel),x,y,z)if not (kocsiadd) thenoutputChatBox(\"Nem sikerült spawnolni az autót!\")endendaddCommandHandler(\"kocsiadd\", kocsispawn)