The following warnings occurred: | |||||||||||||||
Warning [2] Undefined property: MyLanguage::$archive_pages - Line: 2 - File: printthread.php(287) : eval()'d code PHP 8.2.18 (Linux)
|
![]() |
Updated Item Rain Code - Printable Version +- Mario Kart Wii Gecko Codes, Cheats, & Hacks (https://mariokartwii.com) +-- Forum: Hacks/Modding (https://mariokartwii.com/forumdisplay.php?fid=14) +--- Forum: Code Support / Help / Requests (https://mariokartwii.com/forumdisplay.php?fid=61) +--- Thread: Updated Item Rain Code (/showthread.php?tid=1456) |
RE: Updated Item Rain Code - Wii_Xploit - 11-09-2024 (11-07-2024, 11:34 AM)Unnamed Wrote: I have never tested it on Custom Tracks. What is the issue there? when I replace one of the wii tracks on dolphin with a custom, it just loads the usual wii tracks instead. RE: Updated Item Rain Code - Wii_Xploit - 12-15-2024 (11-07-2024, 11:34 AM)Unnamed Wrote: I have never tested it on Custom Tracks. What is the issue there? Hi again. I'm just checking to see if you saw my response to my problem and if your working on fixing the code yet. RE: Updated Item Rain Code - Zeraora - 12-16-2024 You didn't replace the track correctly then. That isn't an issue related to this code. RE: Updated Item Rain Code - _Ro - 12-16-2024 That is actually a "problem" with the code. The code forces the multiplayer tracks to load, the _d variants. Remove the "0453B328 60000000" line for normal track loading (NTSC-U, you can easily identify what line it is for other regions, it is at the near end of the code), or simply replace the _d file instead RE: Updated Item Rain Code - Unnamed - 12-16-2024 One thing also to mention here is the usage of this code with tracks that have very large scope. The items, especially item routes, will get trouble if the coordinates reach arbitary high numbers. RE: Updated Item Rain Code - FelX - 12-27-2024 The code is amazing thank you very much ! Is it possible to change the probabilities? And if so, how? I would like to modify them to only rain bombs for example. RE: Updated Item Rain Code - Unnamed - 12-27-2024 The code will create a random number between 0 and 0x7FFF (32767) and this number is compared to specific ranges. The ranges are different in the size, hence the probailities. If a range is hit, then the corresponding item is used. The item determination starts at the line 4E800421 2C031480 and ends at 3940000D 38800000 If you want e. g. to only rain bombs, simply replace all 3940000X in that part with 39400009. But if you do so, you should remove the other item limits and increase the limit for bombs so that they not dissapear when they are falling. If you want customized probabilities, you have to modify the source. You could use PyIIASM-3 for this. RE: Updated Item Rain Code - Wii_Xploit - 01-25-2025 (12-16-2024, 12:31 AM)Zeraora Wrote: You didn't replace the track correctly then. That isn't an issue related to this code. I did. I used all methods to do it but got nothing. (12-16-2024, 05:20 AM)_Ro Wrote: That is actually a "problem" with the code. The code forces the multiplayer tracks to load, the _d variants. Remove the "0453B328 60000000" line for normal track loading (NTSC-U, you can easily identify what line it is for other regions, it is at the near end of the code), or simply replace the _d file instead neither of the methods that you gave me worked. RE: Updated Item Rain Code - _Ro - 01-25-2025 That is impossible RE: Updated Item Rain Code - Wii_Xploit - 01-26-2025 (01-25-2025, 06:49 PM)_Ro Wrote: That is impossible Could you show me if it works for you then? |