Champions

Champions

32M Downloads

Integration with Game Stages does not work

somebush opened this issue · 4 comments

commented

Versions (Be specific, do not write "latest"):

  • Champions: champions-1.12.2-1.0.11.10.jar
  • Forge: 14.23.5.2859

Observed Behavior:

I get a very long list of errors in the chat, their text is completely uninformative, it looks like full_frame(@4){}. Champions of tier 2, 3 and 4 will not spawn, regardless of whether the player has the required game stage; only champions of tier 1 will spawn.

Expected Behavior:

The mod prevents champions of tier 2, 3 and 4 from spawning until the player reaches the game stage 'iamchampion'.

Steps to Reproduce:

  1. Install these mods:
CraftTweaker2-1.12-4.1.20.699.jar
GameStages-1.12.2-2.0.123.jar
rawinput-1.7.0.jar
Bookshelf-1.12.2-2.3.590.jar
champions-1.12.2-1.0.11.10.jar
  1. Create .minecraft\scripts\champions.zs:
mods.champions.ChampionStages.addTierStage(iamchampion, 2);
mods.champions.ChampionStages.addTierStage(iamchampion, 3);
mods.champions.ChampionStages.addTierStage(iamchampion, 4);
  1. Change .minecraft\config\champions\ranks.json:
[
  {
    "tier": 1,
    "color": 16776960,
    "affixes": 1,
    "growthFactor": 1,
    "chance": 0.05,
    "potions": []
  },
  {
    "tier": 2,
    "color": 16750848,
    "affixes": 2,
    "growthFactor": 4,
    "chance": 0.5,
    "potions": []
  },
  {
    "tier": 3,
    "color": 6750207,
    "affixes": 3,
    "growthFactor": 9,
    "chance": 0.5,
    "potions": []
  },
  {
    "tier": 4,
    "color": 13382655,
    "affixes": 4,
    "growthFactor": 16,
    "chance": 0.5,
    "potions": []
  }
]
  1. Join to any singleplayer world

Crash Log: Please use a paste site like gist.
It's not a crash.

commented

Please share the latest.log or debug.log files from the session so that I can see the potential errors being logged.

commented

There is a byte code listed there, I doubt it is safe to share it.

commented

Here is the line that precedes the byte code

[Server thread/INFO] [gamestages]: Saved 0 stages for somebush.
[Server thread/INFO] [net.minecraft.server.MinecraftServer]: Saving chunks for level 'cha0'/overworld
[Client thread/INFO] [net.minecraft.client.gui.GuiNewChat]: [CHAT] §cERROR: champions.zs:1 > No such static member in mods.champions: ChampionStages
[Client thread/INFO] [net.minecraft.client.gui.GuiNewChat]: [CHAT] §cERROR: champions.zs:1 > any values not yet supported
[Client thread/INFO] [net.minecraft.client.gui.GuiNewChat]: [CHAT] §cERROR: champions.zs:2 > No such static member in mods.champions: ChampionStages
[Client thread/INFO] [net.minecraft.client.gui.GuiNewChat]: [CHAT] §cERROR: champions.zs:2 > any values not yet supported
[Client thread/INFO] [net.minecraft.client.gui.GuiNewChat]: [CHAT] §cERROR: champions.zs:3 > No such static member in mods.champions: ChampionStages
[Client thread/INFO] [net.minecraft.client.gui.GuiNewChat]: [CHAT] §cERROR: champions.zs:3 > any values not yet supported
[Client thread/INFO] [net.minecraft.client.gui.GuiNewChat]: [CHAT] §cERROR: [crafttweaker]: Error executing {[0:crafttweaker]: champions.zs}: Bad type on operand stack\nException Details:\n  Location:\n    Champions.__script__()V @17: ifnonnull\n  Reason:\n    Type integer (current frame, stack[5]) is not assignable to reference type\n  Current Frame:\n    bci: @17\n    flags: { }\n    locals: { }\n    stack: { null, '[Lstanhebben/zenscript/value/IAny;', '[Lstanhebben/zenscript/value/IAny;', integer, integer, integer }\n
commented

I was misled, I opened a newer wiki page written in 2021 for new versions. For version 1.12, it was necessary to open another wiki page written in 2018, which does not open by default.
If you use the code

mods.champions.addTierStage("iam1", 1);
mods.champions.addTierStage("iam2", 2);
mods.champions.addTierStage("iam3", 3);
mods.champions.addTierStage("iam4", 4);

then the mod works well.