Are you in the right game version? Did you read my first post? Anyway i didn't made the scripts so i can't help you there.
1.05, the most recent version. was kinda hoping someone would be willing to see if they could enable all the skills on the save as i seem not to be able to T.T
try to do the search like instructed but like said when I get the addresses, each one I try shows something like 44, 69, 255, or something similar in a few of the skill slots and i start experiencing the fatal error force closed issue while switching all of them to the 0: buyable to lock them for enabling T.T
----
edit: nvm after some more playing around found a way around the issue. after getting the addresses to where they number of them wouldn't decrease anymore, I then went and bought the skills up to the max level so that the addresses that were effected would still show the 2 then went 1 by 1 until found the correct one xD()
So does anyone know how to edit the stats of weapons?, or at the very least know where to start looking because I really want to improve the tracking capabilities of löwenflug because homing lasers being fired from something resembling Nirvash should be fast
So does anyone know how to edit the stats of weapons?, or at the very least know where to start looking because I really want to improve the tracking capabilities of löwenflug because homing lasers being fired from something resembling Nirvash should be fast
Editing weapons stats in game is difficult and not permanent either.
Lowenflug is perfect to use missle performance upgrade attachment, use that to improve tracking.
So does anyone know how to edit the stats of weapons?, or at the very least know where to start looking because I really want to improve the tracking capabilities of löwenflug because homing lasers being fired from something resembling Nirvash should be fast
Editing weapons stats in game is difficult and not permanent either.
Lowenflug is perfect to use missle performance upgrade attachment, use that to improve tracking.
I already do use the performance upgrade, but I was hoping to make the projectile speed faster aswell, so unless I manage to directly mess with the game files then it can't be done/ Is too much effort?
(Found out that the game files can be modified, and I don't play online anyway, so im just gonna do that)
Just got this, was hoping I could figure out how to make all my armor have 3 slots but it doesnt seem to be working, any advice? I'm playing on Epic btw. I see it mentions using an older version, how do I do that? Any hope that it will be updated for the current version?
Just got this, was hoping I could figure out how to make all my armor have 3 slots but it doesnt seem to be working, any advice? I'm playing on Epic btw. I see it mentions using an older version, how do I do that? Any hope that it will be updated for the current version?
I would love to know how you got more than 12 items.
Magic! Not really, I wish. You just have to look at the addresses of the original 12 and notice a pattern, then continue the pattern. But I'll upload the table. Sorry it took me awhile to notice your reply.
Is this working for the Epic version? I get several results when searching the array, and the part type of first few entries don't match up with the note in ID ('(should be Orsa Body)' etc). Just want to cut down on the part farming.
Wrote a simple script that enables three attachment slots for all parts, probably requires the orsa legs attachment address to be updated but once that's found it seems to work fine. Shouldn't overwrite existing attachments but not 100% sure of that
OrsaLeg1stAttachAddress = 0x24de16d0110
temp = OrsaLeg1stAttachAddress
for i=1,396,1
do
for i=1,3,1
do
if readBytes(temp,1,true)[1] == 145
then
print(readBytes(temp,8))
writeBytes(temp,0,0,0,0,0,0,0,0)
end
temp = temp + 8
end
temp = temp + 0x20
end
Probably is horrible because I made this in an hour while learning CE's script engine and Lua on the fly, but hopefully it helps someone who wants three attachments without having to go through and find/set it manually
Just got this, was hoping I could figure out how to make all my armor have 3 slots but it doesnt seem to be working, any advice? I'm playing on Epic btw. I see it mentions using an older version, how do I do that? Any hope that it will be updated for the current version?
hi everyone, i found the orsa head id at ver 1.05. it's :
00 00 66 00 00 00 00 00 00 00 01 00 00 00 01 00 00 00 00 00 00 00
Thanks +1 I got the armor stuff to work, now just not sure how to see more than just 12 pieces of equipment...
Edit2: There, got it to edit over 300 pieces, might add more tho
EDIT: I got it to update--I just hadn't progressed far enough, previously. My only problem is being able to tell which item is which; the item ID is just an array of bytes, it doesn't tell me much.