Vadlmok Posted March 4, 2019 Share Posted March 4, 2019 Всем привет. Помогите пож с кодом, при загрузки с бд координат позиций авто, создаётся само авто и записывается в таблицу ( думаю что не правильно идёт запись). Но при любой проверке, уже с таблицы не считывается. farmdata[id]["Combaine"] = createVehicle(532, farmdata[id]["x532"], farmdata[id]["y532"], farmdata[id]["z532"]) function enterVehicle ( thePlayer, seat, jacked ) if farmdata[id]["Combaine"] then if farmdata[id]["Id"] ~= getElementData(thePlayer,"fjobs") then removePedFromVehicle ( thePlayer ) outputChatBox ( "Вы не фермер!", thePlayer,255,255,255,true) end end end addEventHandler ( "onVehicleStartEnter", getRootElement(), enterVehicle ) Данная переменная farmdata[id]["Combaine"], которая хранит в себе правильный ID, проверенно, приравнивается к любому авто на сервере, а мне нужно чтобы к определённому. Помогите пожалуйста, уже два дня мозг парю себе Link to comment
dimdey Posted March 18, 2019 Share Posted March 18, 2019 (edited) farmdata[id]["Combaine"] = createVehicle(532, farmdata[id]["x532"], farmdata[id]["y532"], farmdata[id]["z532"]) function enterVehicle ( thePlayer, seat, jacked ) if farmdata[id]["Combaine"] == getElementModel(source) then if farmdata[id]["Id"] ~= getElementData(thePlayer,"fjobs") then removePedFromVehicle ( thePlayer ) outputChatBox ( "Вы не фермер!", thePlayer,255,255,255,true) end end end addEventHandler ( "onVehicleStartEnter", getRootElement(), enterVehicle ) Попробуй так. Edited March 18, 2019 by dimdey 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