..............................................
Próbáld meg így:
function loadMod(f, m)
if fileExists(\'model/\'.. f ..\'.txd\') then
engineImportTXD(engineLoadTXD(\'model/\'.. f ..\'.txd\'), m)
outputChatBox(tostring(f) .. \" txd replaced\", 0, 255, 0, true)
end
if fileExists(\'model/\'.. f ..\'.dff\') then
engineReplacebench(engineLoadDFF(\'model/\'.. f ..\'.dff\', m), m)
outputChatBox(tostring(f) .. \" dff replaced\", 0, 255, 0, true)
end
if fileExists(\'model/\'.. f ..\'.col\') then
engineReplaceCOL(engineLoadCOL(\'model/\'.. f ..\'.col\'), m)
outputChatBox(tostring(f) .. \" col replaced\", 0, 255, 0, true)
end
end
-- loadMod(\"bench\", 1258, true)
-- 1: Ide true mi a halálnak kell azt nem értem (2 változót adtál meg a loadMod function-nek)
-- 2: Lehet hogy nem fogsz kapni jó értéket ha a fileExists-részhez írod a modell nevét és úgy helyettesíted be elé a modell nevét
loadMod(\"teszt\", 1258)