Sziasztok szeretnék egy olyat csinálni hogy elmentse SQL-be a kocsinak hogy milyen frakiba van de valamiért nem menti el valakinek valami ötlete ? (NEM BIZTOS hogy jól írtam be a dbExes-be az adatokat) Van nekem egy SQL táblám aminek XY a neve és van benne egy olyan hogy \"jarmuvek\" és azon belül olyan hogy \"frakcio\" és azt a számot szeretném megváltoztatni egy parancs segítségével. Előre is Köszönöm!
addCommandHandler(\"setvehfaction\",function(player, cmd, faction, playerID)if (tonumber(getElementData(player,\"acc.adminLevel\")) >= 6) then local veh = getPedOccupiedVehicle(player) if veh then if faction then local dbid = tonumber(getElementData(veh, \"dbid\")) or 0 local faction = tonumber(faction) or 0 local playerID = tonumber(playerID) or 0 if faction == 0 then outputChatBox(\"#d55252[WeenGaming] #FFFFFFEz a jármű mostantól #\"..faction..\" (játékos) tulajdona!\", player, 255, 0, 0, true) if dbid > 0 then dbExec(connection, \"UPDATE jarmuvek SET frakcio = ? WHERE ID = ?\",faction,getElementData(player, \"acc.accountID\")) end else outputChatBox(\"#d55252[WeenGaming] #FFFFFFEz a jármű mostantól #\"..faction..\" (frakció) tulajdona!\", player, 255, 0, 0, true) if dbid > 0 then dbExec(connection, \"UPDATE jarmuvek SET frakcio = ? WHERE ID = ?\",faction,getElementData(player, \"acc.accountID\")) end end else outputChatBox(\"#d55252[WeenGaming] #FFFFFF/\"..cmd..\" [FrakcióID | 0:Kivétel] [Játékos DBID]\", player, 255, 0, 0, true) end else outputChatBox(\"#d55252[WeenGaming] #FFFFFFJárműben kell ülnöd!\", player, 255, 0, 0, true) endendend)