-
Posts
2,753 -
Joined
-
Last visited
-
Days Won
18
Captain Cody last won the day on January 19 2019
Captain Cody had the most liked content!
About Captain Cody
- Birthday September 13
Details
-
Gang
JSeries
-
Location
Deep mountains of Montana
-
Occupation
91 B
-
Interests
Vehicles
Recent Profile Visitors
21,602 profile views
Captain Cody's Achievements
Foot Soldier (41/54)
532
Reputation
-
Carl Rayanitch DZ started following Captain Cody
-
gabriel01010 started following Captain Cody
-
nadson007 started following Captain Cody
-
SerGoFun started following Captain Cody
-
Nurupo started following Captain Cody
-
If you look on my GitHub I have some tools laid out to convert form 3ds max to MTA using MTA-Stream. Unfortunately I haven't really don't anything with MTA in a while and I no longer develop content with it so I can not really give you a precise guide to converting.
- 154 replies
-
- lc
- carmageddon
-
(and 1 more)
Tagged with:
-
Hi, @LuanSantos_ if you go to my GitHub I have a converter posted with the information. Personally I'm not a fan of scene to res as it uses a streaming system which produces very low performance results. https://github.com/Wolfee-J/MTA-Map-Convertor Download MTA-Map-Converator Extract the folder 'MTA-Convertor' into your MTA resources Extract map resources (TXD,COL,DFF) into the 'MTA-Convertor/Resources' folder Extract map files (IPL/IDE/ECT) into the root MTA-Convertor folder
-
SrPeixoto started following Captain Cody
-
New streaming system released https://github.com/Wolfee-J/MTA-Stream
- 154 replies
-
- lc
- carmageddon
-
(and 1 more)
Tagged with:
-
New version coming tomorrow, need to sort out some crashing but pretty much removes loading times from the equation. Also, driver 2 link will be readded tomorrow.
- 154 replies
-
- lc
- carmageddon
-
(and 1 more)
Tagged with:
-
[Multi Game Mode] CnC War Enterprises [English|Multi]
Captain Cody replied to CobraJ's topic in Servers to play on
Due to the general policy that I can see regarding other servers I can't delete, but uses leaked game mode. -
Cinematic started following Captain Cody
-
#MacTavish started following Captain Cody
-
KaziK started following Captain Cody
-
Higher the poly count = the better the lighting. Even if it's low poly you can still produce decent lighting that is much better then the current flat lighting. Trust me, I've been working on maps for years.
-
May I recommend adding prelighting. Gives the models a much more polished look.
-
Not only have you posted in the wrong section, but you have violated the rules of said section. Please give an attempt https://wiki.multitheftauto.com/wiki/Main_Page then you can ask for help.
-
There will not be an MTA created for GTAV as the man power needed does not exist, however there are many modifications for V similar to the idea behind MTA.
-
Sjonkovic started following Captain Cody
-
I'll update it as soon as I get a new rig
- 154 replies
-
- 1
-
- lc
- carmageddon
-
(and 1 more)
Tagged with:
-
If you do something truly unique then yes. My project for example has hundreds of people waiting for it if I ever finish it. Alot of things that people think are unique really are not and are mostly the same bull :~ that you come to expect everywhere.
-
nightly.multitheftauto.com/files/shaders/shader_hud_mask.zip
-
text1 = dxDrawText ( "Click to copy", 700, 828, 150,"Click to copy" ) function setClipboardF (texts) setClipboard(texts) end addEventHandler("onClientGUIClick", tex1, setClipboardF, false)
-
Sorry for a bit of a late response, haven't been reading forums much lately. https://wiki.multitheftauto.com/wiki/OnClientVehicleDamage https://wiki.multitheftauto.com/wiki/GetVehiclePanelState https://wiki.multitheftauto.com/wiki/SetVehiclePanelState When you active the function loop through the panels and save their states. On vehicle damage loop through and restore their states to what has been saved. damageTable = {} function setVehiclePanelsDamageProof(player) local veh = getPedOccupiedVehicle(player) if isElement(veh) then if damageTable[veh] then damageTable[veh] = nil else damageTable[veh] = {} for i = 0,6 do local state = getVehiclePanelState(veh,i) damageTable[veh][i] = state end end end end addCommandHandler ( "damageProof", setVehiclePanelsDamageProof ) -- # Change this to whatever you want function onVehicleDamage() if isElement(source) and damageTable[source] then for i = 0,6 do setVehiclePanelState(source,i,damageTable[source][i]) end end end addEventHandler("onVehicleDamage", root, onVehicleDamage) Basic script, should work (Untested) . You'll have to modify it to your needs though. When you use the command "damageProof" it loops through the vehicles panels and saves their states (Or if table exists nils it) which enables or disables it. If a table exists (It's enabled) onVehicleDamage it loops through and resets the vehicles panel states. If disabled then it'll ignore it.