im a noob at this but when I try to compile i get these errors what am I doing wrong ? [Link]
all I did was change the 0 to 1000
That looks like you are pulling the Assembly-CSharp.dll out of the folder with all the other dll files. Don't do that. These work by referencing each other. Using your picture as an example, ignoring the errors on the bottom, you can see the "GetComponent" is red. That is something that is not in the Assembly-CSharp.dll but defined in the UnityEngine.CoreModule.dll. So without the unity dll the assembly doesn't know what "GetComponent" means. Same for all the errors below relating to missing assembly references.
This is a problem strictly for that code. I got so used to changing digits digits via IL that I didn't bother to check if it was possible with a method change. That's on me. Here's how to do it.
How To
Find the line you want to change, and right click on it.
Click on "Edit IL Instructions..."
Find the ldc.i4.1 in the highlighted lines
Click on it and a drop down box will open up
Search for ldc.i4.0 and click on it
Click OK
That is it.
Picture to go with the list
Just know that editing with the IL Instructions makes it very easy to break the assembly if you don't know what you are doing because it doesn't error check. So make sure you follow exactly.
Sorry, I know it's a bit late to ask, but exactly where can I find those lines? I've already searched "QuestStageManager" but haven't found anything
This is a problem strictly for that code. I got so used to changing digits digits via IL that I didn't bother to check if it was possible with a method change. That's on me. Here's how to do it.
How To
Find the line you want to change, and right click on it.
Click on "Edit IL Instructions..."
Find the ldc.i4.1 in the highlighted lines
Click on it and a drop down box will open up
Search for ldc.i4.0 and click on it
Click OK
That is it.
Picture to go with the list
Just know that editing with the IL Instructions makes it very easy to break the assembly if you don't know what you are doing because it doesn't error check. So make sure you follow exactly.
Sorry, I know it's a bit late to ask, but exactly where can I find those lines? I've already searched "QuestStageManager" but haven't found anything
It's relatively easy, go to your Assembly Explorer scroll down look for the WMP(Yellow Highlighted Word) Double click the WMP and Scroll down again look for GameFinish double click it as well and look for the Check MVP (Orange Highlighted Word) and find the code inside.
To make it short Assembly Explorer > WMP(Yellow Highlighted Word) > GameFinish > CheckMVP (Orange Highlighted Word) = Profit
Also if you don't have your Assembly Explorer enable you can go under View > Assembly Explorer or press Ctrl + Alt + L
Are we somehow able to translate changes from the assembly to a CT? Also has anyone figured out how to change the level of the skill? Crafting up to level 15 takes forever.
Are we somehow able to translate changes from the assembly to a CT? Also has anyone figured out how to change the level of the skill? Crafting up to level 15 takes forever.
So far I haven't really heard anything regarding editing skill level. I've been doing manual upgrades since they release the Assembly code for it.
someone should just upload a DLL with all the cheats and everything else on it too, yaknow... just combine EVERYTHING we have worked on so far into a mega hack
also idk if it would work but just for shits and giggles someone should ask the devs if they give em enough money can they be allowed to just do anything they want with their own personal account XD
You can basically make your own assembly by just scrolling up and looking for the one you need. Because not all of us use all the hacks that are given here we just choose what we want/need so we might have the hacks that you don't like or we don't have the hacks that you are looking for.