function wczytujemypojazdy ()
config = xmlLoadFile("nowy.xml")
if config then
outputChatBox("Wczytano", source,255, 255, 255)
local model = xmlNodeGetAttribute(config, "model")
local x = xmlNodeGetAttribute(config, "x")
local y = xmlNodeGetAttribute(config, "y")
local z = xmlNodeGetAttribute(config, "z")
local pojazd = createVehicle ( model, x, y, z )
end
end
addCommandHandler("wczytaj", wczytujemypojazdy )