Piles Of Ideas | The 100 Jevil Challenge - Day 12

แชร์
ฝัง
  • เผยแพร่เมื่อ 30 ม.ค. 2025

ความคิดเห็น • 4

  • @damoonguy3743
    @damoonguy3743 12 วันที่ผ่านมา

    I mentioned this on stream, but I think it would be funny to give the party 70 extra inventory slots, each filled with an unusable, permanent dog residue.

  • @tetriscat66
    @tetriscat66 12 วันที่ผ่านมา

    I haven’t used gamemaker before (my programming knowledge is mostly C#), so some of this formatting is probably not even close to correct, but I’m pretty sure the process for FriedPipis only targeting damaged party members would be something along the lines of (assuming the party is an array):
    When the act is selected() {
    List list = new list(); // make a list
    for each party member {
    if(member.hp < member.maxHP) {
    add party member’s idx to list;
    }
    }
    int selectedIdx = random int from list;
    Have the act target the party member of that index;
    }

    • @egochka11
      @egochka11  11 วันที่ผ่านมา +1

      And, out of curiosity, where have thou been learning C#?

    • @tetriscat66
      @tetriscat66 11 วันที่ผ่านมา

      Terraria modding (through tModLoader). C# is fairly similar to Java (which I’ve been taught before) so it wasn’t that hard for me to start using it