Guessing you want a way to disable it for good, but you can use the restore energy option from the cheat mod.czarnozeby wrote: ↑Tue Jul 18, 2023 4:51 amDo u know how to switch off the tiredness im tired all the time when i travel from sector to sector
REQ :Jagged Alliance 3 table
-
- Cheater
- Posts: 34
- Joined: Wed Jun 09, 2021 12:07 pm
- Reputation: 6
Re: REQ :Jagged Alliance 3 table
-
- Cheater
- Posts: 34
- Joined: Wed Jun 09, 2021 12:07 pm
- Reputation: 6
Re: REQ :Jagged Alliance 3 table
Has anyone found a way to spawn tools ?
Re: REQ :Jagged Alliance 3 table
You can't change the number of maximum perks because there is none such value. It's just hardcoded choice there.Rausch0r wrote: ↑Mon Jul 17, 2023 12:26 pmYeah, I'd also like to know if it is possible to change the number of maximum "Personal Perks" and more importantly the "Tactical Perks" during IMP creation. Maybe some variation of the mod which changes Max Stat Points (e.g. const.Imp.MaxStatPoints = 850), if not possible using CE. I wasnt able to isolate the value so far...
I solved it that way - in "Jagged Alliance 3\Packs\Lua.hpk" modified "Lua\Satellite\SatelliteSquad.lua" file - in method "function CreateImpMercData(impTest, sync)" modified code near"unitData:RemoveAllCharacterEffects()" line to this - it adds all personal and tactil perks to IMP character:
Code: Select all
if sync then
unitData:RemoveAllCharacterEffects()
unitData:AddStatusEffect("Psycho")
unitData:AddStatusEffect("Negotiator")
unitData:AddStatusEffect("AutoWeapons")
unitData:AddStatusEffect("CQCTraining")
unitData:AddStatusEffect("HeavyWeaponsTraining")
unitData:AddStatusEffect("MartialArts")
unitData:AddStatusEffect("MeleeTraining")
unitData:AddStatusEffect("MrFixit")
unitData:AddStatusEffect("NightOps")
unitData:AddStatusEffect("Stealthy")
unitData:AddStatusEffect("Teacher")
unitData:AddStatusEffect("Throwing")
end
return unitData
end
-
- Expert Cheater
- Posts: 78
- Joined: Thu Mar 16, 2017 1:46 pm
- Reputation: 6
Re: REQ :Jagged Alliance 3 table
Please, could you share the modified file with us? ThxMaxGav wrote: ↑Tue Jul 18, 2023 11:48 amYou can't change the number of maximum perks because there is none such value. It's just hardcoded choice there.Rausch0r wrote: ↑Mon Jul 17, 2023 12:26 pmYeah, I'd also like to know if it is possible to change the number of maximum "Personal Perks" and more importantly the "Tactical Perks" during IMP creation. Maybe some variation of the mod which changes Max Stat Points (e.g. const.Imp.MaxStatPoints = 850), if not possible using CE. I wasnt able to isolate the value so far...
I solved it that way - in "Jagged Alliance 3\Packs\Lua.hpk" modified "Lua\Satellite\SatelliteSquad.lua" file - in method "function CreateImpMercData(impTest, sync)" modified code near"unitData:RemoveAllCharacterEffects()" line to this - it adds all personal and tactil perks to IMP character:
Code: Select all
if sync then unitData:RemoveAllCharacterEffects() unitData:AddStatusEffect("Psycho") unitData:AddStatusEffect("Negotiator") unitData:AddStatusEffect("AutoWeapons") unitData:AddStatusEffect("CQCTraining") unitData:AddStatusEffect("HeavyWeaponsTraining") unitData:AddStatusEffect("MartialArts") unitData:AddStatusEffect("MeleeTraining") unitData:AddStatusEffect("MrFixit") unitData:AddStatusEffect("NightOps") unitData:AddStatusEffect("Stealthy") unitData:AddStatusEffect("Teacher") unitData:AddStatusEffect("Throwing") end return unitData end
- xXLashkeXx
- Expert Cheater
- Posts: 86
- Joined: Mon May 22, 2017 4:08 pm
- Reputation: 63
Re: REQ :Jagged Alliance 3 table
I've put together everything you need to unpack the HPK file, this might help some people...
=============================================================================================================================
How to Use? / Infos!
=============================================================================================================================
Changelog:
=============================================================================================================================
Mods:
txt / lua & more Files:
Compiler:
=============================================================================================================================
How to Use? / Infos!
Special Info: Inf Money
Special Info: Will you add Inf. Money
Click "ESC" go to "Cheats" and use "Execute....".
Than add the Code into this "Execute Window".
AddMoney('amount', 'system')
Example:
AddMoney('50000000', 'system')
And than click "Add Money".
Finish!
Would you like to change this in the HPK?
Find the file:
"Lua\Money.lua".
Find Line:
Click "ESC" go to "Cheats" and use "Execute....".
Than add the Code into this "Execute Window".
AddMoney('amount', 'system')
Example:
AddMoney('50000000', 'system')
And than click "Add Money".
Finish!
Would you like to change this in the HPK?
Find the file:
"Lua\Money.lua".
Find Line:
Code: Select all
function NetSyncEvents.CheatGetMoney()
AddMoney(100000, "system")
end
Add 5 Mio Money
How to Use?
[1] Go to "\AppData\Roaming\Jagged Alliance 3\Mods" & unpack the rar.
[2] Then go Ingame... Then click "ESC" > "Options" > "Mod-Options" & search "Add 5 Mio Money"...
[3] Is "ON" then go to "Cheats" > "Add Money".
[1] Go to "\AppData\Roaming\Jagged Alliance 3\Mods" & unpack the rar.
[2] Then go Ingame... Then click "ESC" > "Options" > "Mod-Options" & search "Add 5 Mio Money"...
[3] Is "ON" then go to "Cheats" > "Add Money".
All Perks on Starting...??? (is in Test) Added: 07/21/23
I found some perks here that you might be able to add to the characters... Currently I only know that if you do this you would have to start a completely new game... (Please use with caution)
Find the file:
"Lua\UnitDataCompositeDef\NameFromLuaFile.lua".
>>> HINT: Here you have to find the characters... Say Scope, Raven, Raider or Scully... whatever....
Find Line:
I have use Raider.lua for example... Here is the Starting Perks for the Character...
Example:
Find the file:
"Lua\UnitDataCompositeDef\NameFromLuaFile.lua".
>>> HINT: Here you have to find the characters... Say Scope, Raven, Raider or Scully... whatever....
Find Line:
I have use Raider.lua for example... Here is the Starting Perks for the Character...
Code: Select all
StartingPerks = {
"Negotiator",
"Teacher",
"TagTeam",
"Flanker",
"HitTheDeck",
"Shatterhand"
},
Code: Select all
StartingPerks = {
-- Old Perks
--[["Negotiator",
"Teacher",
"TagTeam",
"Flanker",
"HitTheDeck",
"Shatterhand"]]
-- New Perks
"FullBodyContact",
"HitTheDeck",
"BeefedUp",
"Rage",
"Revenge",
"Vanguard",
"CalmUnderFire",
"HoldPosition",
"BattleFocus",
"HitandRun",
"Flanker",
"FastRunner",
"VantagePoint",
"Frogleaping",
"Lightning",
"Reactions",
"Luckytreak",
"Anatomical",
"Precision",
"TotalConcentration",
"Untraceable",
"OpportunisticKiller",
"Deadeye",
"FireRoutine",
"ReactiveFire",
"Ambusher",
"Sharpshooter",
"Killzone",
"Assassination",
"RecoilManagement",
"BreachAndClear",
"KillingSpree",
"ShockAssault",
"Ironclad",
"SuddenStrike",
"CollateralDamage",
"LineBreaker",
"TrueStrike",
"Savior",
"DistractingShot",
"ArterialShot",
"StressManagement",
"DireWarning",
"InspiringStrike",
"Painkiller",
"ShockAndAwe",
"TrickShot",
-- Specials(???)
"AutoWeapons",
"Spotter",
"NightOps",
"HawksEye",
"CancelShotPerk",
"SteadyBreathing",
"DeathFromAbove",
"Negotiator",
"Teacher",
"TagTeam",
"Shatterhand"
},
Inf. PerkPoints
How to Use?
[1] Go to "\AppData\Roaming\Jagged Alliance 3\Mods" & unpack the rar.
[2] Then go ingame... Continue the game and Click "ESC", then go to "Options" > "Mod-Options" & click Inf. PerkPoints.....
>>> HINT: First select a Soldier not on Satellite-Menu, choose the Soldier ingame.... then go to [2]
[1] Go to "\AppData\Roaming\Jagged Alliance 3\Mods" & unpack the rar.
[2] Then go ingame... Continue the game and Click "ESC", then go to "Options" > "Mod-Options" & click Inf. PerkPoints.....
>>> HINT: First select a Soldier not on Satellite-Menu, choose the Soldier ingame.... then go to [2]
Merc Hired 500 Days
How to Use?
[1] Go to "\AppData\Roaming\Jagged Alliance 3\Mods" & unpack the rar.
[2] Then go Ingame... Hired a Merc when he have 5d or fewer... Or Buy a New Merc... and Test can you 500 or not(?).....
[1] Go to "\AppData\Roaming\Jagged Alliance 3\Mods" & unpack the rar.
[2] Then go Ingame... Hired a Merc when he have 5d or fewer... Or Buy a New Merc... and Test can you 500 or not(?).....
All Items
How to you find Items?
[1] Go to => "\Lua\InventoryItemCompositeDef"
[1] Go to => "\Lua\InventoryItemCompositeDef"
Changelog:
18 June 2024
Added: "MercHired365Days" Mod
Added: "MercHired500Days" Mod
Added: "MercHired999Days" Mod
Removed: "Merc Hired 500 Days" Mod (with Link)
>> I have now uploaded them as a file and no longer run via Dropbox or Google Drive
Added: "MercHired500Days" Mod
Added: "MercHired999Days" Mod
Removed: "Merc Hired 500 Days" Mod (with Link)
>> I have now uploaded them as a file and no longer run via Dropbox or Google Drive
17 June 2024
Updated: "HPK Compiler" rar
15 Aug 2023
Added: "Jagged Alliance 3 All Items" txt
27 Jul 2023
Added: "Add 5 Mio Money" Mod
Update: "Merc Hired 500 Days" Mod
Added to Dropbox (File to Big):
LINK REMOVED
Added to Google Drive (File to Big):
LINK REMOVED
Update: "Merc Hired 500 Days" Mod
Added to Dropbox (File to Big):
LINK REMOVED
Added to Google Drive (File to Big):
LINK REMOVED
26 Jul 2023
Removed: "Merc Hired 500 Days" Mod
not worked! Fix coming soon!
not worked! Fix coming soon!
23 Jul 2023
Added: "Inf. PerkPoints" Mod
Update: "Jagged Alliance 3 All Perkslist UPDATE.txt"
Update: "Jagged Alliance 3 All Perkslist UPDATE.txt"
Mods:
Mods
Merc Hired XXX Days:
Other Mods
All Items.txt
Perklist.txt
HPK Compiler
OLD HPK Compiler
Last edited by xXLashkeXx on Wed Jun 19, 2024 9:46 pm, edited 32 times in total.
Re: REQ :Jagged Alliance 3 table
amazing!! thank youxXLashkeXx wrote: ↑Tue Jul 18, 2023 12:29 pmI've put together everything you need to unpack the HPK file, this might help some people...
============================================
Special Info: Will you add Inf. Money
Click "ESC" go to "Cheats" and use "Execute....".
Than add the Code into this "Execute Window".
AddMoney('amount', 'system')
Example:
AddMoney('50000000', 'system')
And than click "Add Money".
Finish!
Would you like to change this in the HPK?
Find the file:
"Lua\Money.lua".
find Line:============================================Code: Select all
function NetSyncEvents.CheatGetMoney() AddMoney(100000, "system") end
Re: REQ :Jagged Alliance 3 table
Added. It's from 1.01.338010 version.DiegoAmorim wrote: ↑Tue Jul 18, 2023 12:07 pmPlease, could you share the modified file with us? ThxMaxGav wrote: ↑Tue Jul 18, 2023 11:48 amYou can't change the number of maximum perks because there is none such value. It's just hardcoded choice there.Rausch0r wrote: ↑Mon Jul 17, 2023 12:26 pm
Yeah, I'd also like to know if it is possible to change the number of maximum "Personal Perks" and more importantly the "Tactical Perks" during IMP creation. Maybe some variation of the mod which changes Max Stat Points (e.g. const.Imp.MaxStatPoints = 850), if not possible using CE. I wasnt able to isolate the value so far...
I solved it that way - in "Jagged Alliance 3\Packs\Lua.hpk" modified "Lua\Satellite\SatelliteSquad.lua" file - in method "function CreateImpMercData(impTest, sync)" modified code near"unitData:RemoveAllCharacterEffects()" line to this - it adds all personal and tactil perks to IMP character:
Code: Select all
if sync then unitData:RemoveAllCharacterEffects() unitData:AddStatusEffect("Psycho") unitData:AddStatusEffect("Negotiator") unitData:AddStatusEffect("AutoWeapons") unitData:AddStatusEffect("CQCTraining") unitData:AddStatusEffect("HeavyWeaponsTraining") unitData:AddStatusEffect("MartialArts") unitData:AddStatusEffect("MeleeTraining") unitData:AddStatusEffect("MrFixit") unitData:AddStatusEffect("NightOps") unitData:AddStatusEffect("Stealthy") unitData:AddStatusEffect("Teacher") unitData:AddStatusEffect("Throwing") end return unitData end
- Attachments
-
- AllPerks.rar
- Password: fearless
- (4.95 MiB) Downloaded 682 times
Re: REQ :Jagged Alliance 3 table
Great work!xXLashkeXx wrote: ↑Tue Jul 18, 2023 12:29 pmI've put together everything you need to unpack the HPK file, this might help some people...
============================================
Special Info: Will you add Inf. Money
Click "ESC" go to "Cheats" and use "Execute....".
Than add the Code into this "Execute Window".
AddMoney('amount', 'system')
Example:
AddMoney('50000000', 'system')
And than click "Add Money".
Finish!
Would you like to change this in the HPK?
Find the file:
"Lua\Money.lua".
find Line:============================================Code: Select all
function NetSyncEvents.CheatGetMoney() AddMoney(100000, "system") end
More convenient java extractor.bat example for SatelliteSquad.lua decompilation
Code: Select all
@rem edit this variables mind the lack of "" this is intetional
set sourcepath=F:\Games\Jagged Alliance 3\Packs\Lua\Lua\Satellite\
set sourcefile=SatelliteSquad.lua
@rem don't change those
set destinationfile=temp.lua
@rem concatenate source and destination files
set destinationfull="%sourcepath%%destinationfile%"
set sourcefull="%sourcepath%%sourcefile%"
java -jar unluac.jar %sourcefull% > %destinationfull%
del %sourcefull%
ren %destinationfull% %sourcefile%
Last edited by Khayman on Tue Jul 18, 2023 2:23 pm, edited 1 time in total.
Re: REQ :Jagged Alliance 3 table
You're the hero of us plebs great sir!xXLashkeXx wrote: ↑Tue Jul 18, 2023 12:29 pmI've put together everything you need to unpack the HPK file, this might help some people...
============================================
Special Info: Will you add Inf. Money
Click "ESC" go to "Cheats" and use "Execute....".
Than add the Code into this "Execute Window".
AddMoney('amount', 'system')
Example:
AddMoney('50000000', 'system')
And than click "Add Money".
Finish!
Would you like to change this in the HPK?
Find the file:
"Lua\Money.lua".
find Line:============================================Code: Select all
function NetSyncEvents.CheatGetMoney() AddMoney(100000, "system") end
Re: REQ :Jagged Alliance 3 table
Anyone been able to add an item list mod, I want to be able to spawn in certain quest items or tools like the statues for the responses because I accidentally sold them. A list of all the items being able to add would work fine with the cheat menu mod.
Re: REQ :Jagged Alliance 3 table
is it possible to use this method to add those unique merc perks (Fox, Vicki...)MaxGav wrote: ↑Tue Jul 18, 2023 1:50 pmAdded. It's from 1.01.338010 version.DiegoAmorim wrote: ↑Tue Jul 18, 2023 12:07 pmPlease, could you share the modified file with us? ThxMaxGav wrote: ↑Tue Jul 18, 2023 11:48 am
You can't change the number of maximum perks because there is none such value. It's just hardcoded choice there.
I solved it that way - in "Jagged Alliance 3\Packs\Lua.hpk" modified "Lua\Satellite\SatelliteSquad.lua" file - in method "function CreateImpMercData(impTest, sync)" modified code near"unitData:RemoveAllCharacterEffects()" line to this - it adds all personal and tactil perks to IMP character:
Code: Select all
if sync then unitData:RemoveAllCharacterEffects() unitData:AddStatusEffect("Psycho") unitData:AddStatusEffect("Negotiator") unitData:AddStatusEffect("AutoWeapons") unitData:AddStatusEffect("CQCTraining") unitData:AddStatusEffect("HeavyWeaponsTraining") unitData:AddStatusEffect("MartialArts") unitData:AddStatusEffect("MeleeTraining") unitData:AddStatusEffect("MrFixit") unitData:AddStatusEffect("NightOps") unitData:AddStatusEffect("Stealthy") unitData:AddStatusEffect("Teacher") unitData:AddStatusEffect("Throwing") end return unitData end
- xXLashkeXx
- Expert Cheater
- Posts: 86
- Joined: Mon May 22, 2017 4:08 pm
- Reputation: 63
Re: REQ :Jagged Alliance 3 table
Ahh okay thats for next timeKhayman wrote: ↑Tue Jul 18, 2023 2:00 pmGreat work!
More convenient java extractor.bat example for SatelliteSquad.lua decompilationCode: Select all
@rem edit this variables mind the lack of "" this is intetional set sourcepath=F:\Games\Jagged Alliance 3\Packs\Lua\Lua\Satellite\ set sourcefile=SatelliteSquad.lua @rem don't change those set destinationfile=temp.lua @rem concatenate source and destination files set destinationfull="%sourcepath%%destinationfile%" set sourcefull="%sourcepath%%sourcefile%" java -jar unluac.jar %sourcefull% > %destinationfull% del %sourcefull% ren %destinationfull% %sourcefile%
Thx <3
-
- Noobzor
- Posts: 13
- Joined: Fri Jul 27, 2018 1:33 pm
- Reputation: 2
Re: REQ :Jagged Alliance 3 table
Sorry for asking.Got question.The built in cheats commands like invulnerability working very badly.Sometimes it activate sometime not.Most of the time i require to activate 2 times on each sector also if i enter or change location(sector) and each game load.
maybe that thing not fully activating?maybe there is some helpful execute commands you can say?Not godMode,only about invulnerability
Re: REQ :Jagged Alliance 3 table
Re: REQ :Jagged Alliance 3 table
..sorry for all that, and thanks for making things clearer.Casanova wrote: ↑Tue Jul 18, 2023 7:19 pmNow if I warn you then you will come complaining.
viewtopic.php?t=25190
it wont happen again!
cheers^^