Bay 12 Games Forum

Please login or register.

Login with username, password and session length
Advanced search  
Pages: 1 ... 7 8 [9] 10 11

Author Topic: [Community Mod 47.05] Teh LOLmod 1.8.68  (Read 33583 times)

TD1

  • Bay Watcher
  • Childe Roland to the Dark Tower Came
    • View Profile
Re: [Community Mod 47.01] Teh LOLmod 1.8.6
« Reply #120 on: February 06, 2020, 02:46:23 pm »

You're a treasure, EP.
Logged
Life before death, strength before weakness, journey before destination
  TD1 has claimed the title of Penblessed the Endless Fountain of Epics!
Sigtext!
Poetry Thread

Untrustedlife

  • Bay Watcher
    • View Profile
    • My Website
Re: [Community Mod 47.01] Teh LOLmod 1.8.6
« Reply #121 on: February 06, 2020, 02:53:11 pm »

This seems to summon something about right.
Code: [Select]
[INTERACTION:SUMMON_GIRLFRIEND]
   [I_TARGET:A:LOCATION]
      [IT_LOCATION:CONTEXT_LOCATION]
   [I_TARGET:B:LOCATION]
[IT_LOCATION:RANDOM_NEARBY_LOCATION:A:1]
   [I_EFFECT:SUMMON_UNIT]
      [IE_TARGET:A]
      [IE_TARGET:B]
      [IE_IMMEDIATE]
      [IE_TIME_RANGE:200:300] [IE_MAKE_PET_IF_POSSIBLE]
[IE_FORBIDDEN_CREATURE_FLAG:SMALL_RACE]
[IE_FORBIDDEN_CREATURE_CASTE_FLAG:CANNOT_BREATHE_AIR]
[IE_FORBIDDEN_CREATURE_CASTE_FLAG:IMMOBILE_LAND]
[IE_CREATURE_CASTE_FLAG:INTELLIGENT_SPEAKS]
[IE_CREATURE_CASTE_FLAG:CAN_LEARN]
[IE_CREATURE_CASTE_FLAG:INTELLIGENT_LEARNS]
[IE_CREATURE_CASTE_FLAG:HAS_FEMALE]
[IE_FORBIDDEN_CREATURE_CASTE_FLAG:MEGABEAST]
[IE_FORBIDDEN_CREATURE_CASTE_FLAG:SEMIMEGABEAST]
[IE_FORBIDDEN_CREATURE_CASTE_FLAG:TITAN]
[IE_FORBIDDEN_CREATURE_CASTE_FLAG:DEMON]
[IE_FORBIDDEN_CREATURE_CASTE_FLAG:UNIQUE_DEMON]
[IE_FORBIDDEN_CREATURE_CASTE_FLAG:SUPERNATURAL]

[IE_CREATURE_CASTE_FLAG:HAS_FEMALE]
SHould definitely be
[IE_CREATURE_CASTE_FLAG:FEMALE]

FEMALE is the name of the Token, not HAS_FEMALE

Wiki:


Change it to that and it will work. Guarenteed
« Last Edit: February 06, 2020, 03:02:00 pm by Untrustedlife »
Logged
I am an indie game dev!
My Roguelike! With randomly generated creatures Roguelegends: Dark Realms
My Turn Based Strategy game! Which you can buy on steam now!DR4X
My website untrustedlife.com

Enemy post

  • Bay Watcher
  • Modder/GM
    • View Profile
Re: [Community Mod 47.01] Teh LOLmod 1.8.6
« Reply #122 on: February 06, 2020, 03:04:26 pm »

You're a treasure, EP.

Thanks for saying that, means a lot. Makes doing this feel worthwhile.

[IE_CREATURE_CASTE_FLAG:HAS_FEMALE]
SHould definitely be
[IE_CREATURE_CASTE_FLAG:FEMALE]

FEMALE is the name of the Token, not HAS_FEMALE

Wiki:


Change it to that and it will work. Guarenteed

I've tried it both ways, it doesn't seem to work. I'm not sure it's possible to specifically summon female creatures, unless you targeted an all-female race.
Logged
My mods and forum games.
Enemy post has claimed the title of Dragonsong the Harmonic of Melodious Exaltion!

Untrustedlife

  • Bay Watcher
    • View Profile
    • My Website
Re: [Community Mod 47.01] Teh LOLmod 1.8.6
« Reply #123 on: February 06, 2020, 03:08:30 pm »

You're a treasure, EP.

Thanks for saying that, means a lot. Makes doing this feel worthwhile.

[IE_CREATURE_CASTE_FLAG:HAS_FEMALE]
SHould definitely be
[IE_CREATURE_CASTE_FLAG:FEMALE]

FEMALE is the name of the Token, not HAS_FEMALE

Wiki:


Change it to that and it will work. Guarenteed

I've tried it both ways, it doesn't seem to work. I'm not sure it's possible to specifically summon female creatures, unless you targeted an all-female race.

FEMALE exists on the CASTE level and IE_CREATURE_CASTE_FLAG checks on the caste level.  Give me a day, ill try it. I am sure this will work. Please just try it.


« Last Edit: February 06, 2020, 03:10:48 pm by Untrustedlife »
Logged
I am an indie game dev!
My Roguelike! With randomly generated creatures Roguelegends: Dark Realms
My Turn Based Strategy game! Which you can buy on steam now!DR4X
My website untrustedlife.com

Untrustedlife

  • Bay Watcher
    • View Profile
    • My Website
Re: [Community Mod 47.01] Teh LOLmod 1.8.6
« Reply #124 on: February 06, 2020, 03:22:04 pm »

This worked fine for me, remember that animal men dont get called animal woman, it will say [animal name] man but when you examine them you will see they are female, i tested this in the arena it worked perfectly so just override your interaction with this:

Code: [Select]
[INTERACTION:SUMMON_GIRLFRIEND]
   [I_TARGET:A:LOCATION]
      [IT_LOCATION:CONTEXT_LOCATION]
   [I_TARGET:B:LOCATION]
[IT_LOCATION:RANDOM_NEARBY_LOCATION:A:1]
   [I_EFFECT:SUMMON_UNIT]
      [IE_TARGET:A]
      [IE_IMMEDIATE]
      [IE_TIME_RANGE:200:300]
      [IE_MAKE_PET_IF_POSSIBLE]
[IE_FORBIDDEN_CREATURE_CASTE_FLAG:IMMOBILE_LAND]
[IE_CREATURE_CASTE_FLAG:INTELLIGENT_SPEAKS]
[IE_CREATURE_CASTE_FLAG:CAN_LEARN]
[IE_CREATURE_CASTE_FLAG:INTELLIGENT_LEARNS]
[IE_CREATURE_CASTE_FLAG:FEMALE]
[IE_FORBIDDEN_CREATURE_CASTE_FLAG:MEGABEAST]
[IE_FORBIDDEN_CREATURE_CASTE_FLAG:SEMIMEGABEAST]
[IE_FORBIDDEN_CREATURE_CASTE_FLAG:TITAN]
[IE_FORBIDDEN_CREATURE_CASTE_FLAG:DEMON]
[IE_FORBIDDEN_CREATURE_CASTE_FLAG:UNIQUE_DEMON]
[IE_FORBIDDEN_CREATURE_CASTE_FLAG:SUPERNATURAL]
[IE_FORBIDDEN_CREATURE_CASTE_FLAG:CANNOT_BREATHE_AIR]

I removed your extra i_target, and removed SMALL_RACE as that doenst actually exist as a token and made it check for FEMALE. It worked perfect.
« Last Edit: February 06, 2020, 03:27:36 pm by Untrustedlife »
Logged
I am an indie game dev!
My Roguelike! With randomly generated creatures Roguelegends: Dark Realms
My Turn Based Strategy game! Which you can buy on steam now!DR4X
My website untrustedlife.com

Untrustedlife

  • Bay Watcher
    • View Profile
    • My Website
Re: [Community Mod 47.01] Teh LOLmod 1.8.6
« Reply #125 on: February 06, 2020, 03:23:39 pm »

You're a treasure, EP.

Thanks for saying that, means a lot. Makes doing this feel worthwhile.

[IE_CREATURE_CASTE_FLAG:HAS_FEMALE]
SHould definitely be
[IE_CREATURE_CASTE_FLAG:FEMALE]

FEMALE is the name of the Token, not HAS_FEMALE

Wiki:


Change it to that and it will work. Guarenteed

I've tried it both ways, it doesn't seem to work. I'm not sure it's possible to specifically summon female creatures, unless you targeted an all-female race.
^^^^^ use the interaction i posted above
Logged
I am an indie game dev!
My Roguelike! With randomly generated creatures Roguelegends: Dark Realms
My Turn Based Strategy game! Which you can buy on steam now!DR4X
My website untrustedlife.com

Enemy post

  • Bay Watcher
  • Modder/GM
    • View Profile
Re: [Community Mod 47.01] Teh LOLmod 1.8.6
« Reply #126 on: February 06, 2020, 03:31:29 pm »

I tried it, but I still get both male and female summons. Are you sure you're getting only females? It certainly summons random humanoids, but it seems like a coin flip on whether or not they're female. This is the interaction I gave the chad creature.

Code: [Select]
[CAN_DO_INTERACTION:SUMMON_GIRLFRIEND]
[CDI:ADV_NAME:Summon]
[CDI:VERB:summon:makes a summoning gesture:NA]
[CDI:WAIT_PERIOD:100]

And this is the full interaction in interaction_lolmod.

Code: [Select]
[INTERACTION:SUMMON_GIRLFRIEND]
   [I_TARGET:A:LOCATION]
      [IT_LOCATION:CONTEXT_LOCATION]
   [I_TARGET:B:LOCATION]
[IT_LOCATION:RANDOM_NEARBY_LOCATION:A:1]
   [I_EFFECT:SUMMON_UNIT]
      [IE_TARGET:A]
      [IE_IMMEDIATE]
      [IE_TIME_RANGE:200:300]
      [IE_MAKE_PET_IF_POSSIBLE]
[IE_FORBIDDEN_CREATURE_CASTE_FLAG:IMMOBILE_LAND]
[IE_CREATURE_CASTE_FLAG:INTELLIGENT_SPEAKS]
[IE_CREATURE_CASTE_FLAG:CAN_LEARN]
[IE_CREATURE_CASTE_FLAG:INTELLIGENT_LEARNS]
[IE_CREATURE_CASTE_FLAG:FEMALE]
[IE_FORBIDDEN_CREATURE_CASTE_FLAG:MEGABEAST]
[IE_FORBIDDEN_CREATURE_CASTE_FLAG:SEMIMEGABEAST]
[IE_FORBIDDEN_CREATURE_CASTE_FLAG:TITAN]
[IE_FORBIDDEN_CREATURE_CASTE_FLAG:DEMON]
[IE_FORBIDDEN_CREATURE_CASTE_FLAG:UNIQUE_DEMON]
[IE_FORBIDDEN_CREATURE_CASTE_FLAG:SUPERNATURAL]
[IE_FORBIDDEN_CREATURE_CASTE_FLAG:CANNOT_BREATHE_AIR]
Logged
My mods and forum games.
Enemy post has claimed the title of Dragonsong the Harmonic of Melodious Exaltion!

Untrustedlife

  • Bay Watcher
    • View Profile
    • My Website
Re: [Community Mod 47.01] Teh LOLmod 1.8.6
« Reply #127 on: February 06, 2020, 03:40:10 pm »

I tried it, but I still get both male and female summons. Are you sure you're getting only females? It certainly summons random humanoids, but it seems like a coin flip on whether or not they're female. This is the interaction I gave the chad creature.

Code: [Select]
[CAN_DO_INTERACTION:SUMMON_GIRLFRIEND]
[CDI:ADV_NAME:Summon]
[CDI:VERB:summon:makes a summoning gesture:NA]
[CDI:WAIT_PERIOD:100]

And this is the full interaction in interaction_lolmod.

Code: [Select]
[INTERACTION:SUMMON_GIRLFRIEND]
   [I_TARGET:A:LOCATION]
      [IT_LOCATION:CONTEXT_LOCATION]
   [I_TARGET:B:LOCATION]
[IT_LOCATION:RANDOM_NEARBY_LOCATION:A:1]
   [I_EFFECT:SUMMON_UNIT]
      [IE_TARGET:A]
      [IE_IMMEDIATE]
      [IE_TIME_RANGE:200:300]
      [IE_MAKE_PET_IF_POSSIBLE]
[IE_FORBIDDEN_CREATURE_CASTE_FLAG:IMMOBILE_LAND]
[IE_CREATURE_CASTE_FLAG:INTELLIGENT_SPEAKS]
[IE_CREATURE_CASTE_FLAG:CAN_LEARN]
[IE_CREATURE_CASTE_FLAG:INTELLIGENT_LEARNS]
[IE_CREATURE_CASTE_FLAG:FEMALE]
[IE_FORBIDDEN_CREATURE_CASTE_FLAG:MEGABEAST]
[IE_FORBIDDEN_CREATURE_CASTE_FLAG:SEMIMEGABEAST]
[IE_FORBIDDEN_CREATURE_CASTE_FLAG:TITAN]
[IE_FORBIDDEN_CREATURE_CASTE_FLAG:DEMON]
[IE_FORBIDDEN_CREATURE_CASTE_FLAG:UNIQUE_DEMON]
[IE_FORBIDDEN_CREATURE_CASTE_FLAG:SUPERNATURAL]
[IE_FORBIDDEN_CREATURE_CASTE_FLAG:CANNOT_BREATHE_AIR]

Okay i tested with 8 girlfriendomancers, and all of them except one got a female. SO yes, it does appear to not work. Sometimes. You should report this as a bug on the tracker and in the announcement thread. Sorry for doubting you. Must be checking all the creatures castes instead of only grabbing the specific castes.

In the mean time maybe create a girlfriend creature  and use that instead, you can in fact summon specific creatures we found that out a few days ago.

Code: [Select]
[INTERACTION:SUMMON FEMALE HUMAN]
   [I_TARGET:A:LOCATION]
      [IT_LOCATION:CONTEXT_LOCATION]
   [I_TARGET:B:LOCATION]
      [IT_LOCATION:RANDOM_NEARBY_LOCATION:A:5]
   [I_EFFECT:SUMMON_UNIT]
      [IE_TARGET:B]
      [IE_IMMEDIATE]
[CREATURE:HUMAN:FEMALE]
      [IE_TIME_RANGE:200:300]
[IE_MAKE_PET_IF_POSSIBLE]
« Last Edit: February 06, 2020, 03:46:07 pm by Untrustedlife »
Logged
I am an indie game dev!
My Roguelike! With randomly generated creatures Roguelegends: Dark Realms
My Turn Based Strategy game! Which you can buy on steam now!DR4X
My website untrustedlife.com

Enemy post

  • Bay Watcher
  • Modder/GM
    • View Profile
Re: [Community Mod 47.01] Teh LOLmod 1.8.6
« Reply #128 on: February 06, 2020, 04:04:54 pm »

Alright, they'll summon female humans for now. I also added an interaction for the stacys to summon male humans. I removed the MAKE_PET_IF_POSSIBLE bit, because it causes Arena crashes.

*I posted the update.
« Last Edit: February 06, 2020, 04:08:49 pm by Enemy post »
Logged
My mods and forum games.
Enemy post has claimed the title of Dragonsong the Harmonic of Melodious Exaltion!

TheRedwolf

  • Bay Watcher
  • Pagan Desert Bitch (she/they)
    • View Profile
Re: [Community Mod 47.02] Teh LOLmod 1.8.62
« Reply #129 on: February 18, 2020, 05:47:55 pm »

After an Eternity of stagnation i return! with an actualy unique addition!
http://dffd.bay12games.com/file.php?id=14825
adds Turret and Supporter Summon interactions for certain Politician Castes, the Tower Defence Gamer, A summon conscripts interaction for the RTS gamer, and OBAMIUM!
Logged

Enemy post

  • Bay Watcher
  • Modder/GM
    • View Profile
Re: [Community Mod 47.02] Teh LOLmod 1.8.62
« Reply #130 on: February 18, 2020, 05:54:10 pm »

Thanks! I'll test these and get them added soon.
Logged
My mods and forum games.
Enemy post has claimed the title of Dragonsong the Harmonic of Melodious Exaltion!

TheRedwolf

  • Bay Watcher
  • Pagan Desert Bitch (she/they)
    • View Profile
Re: [Community Mod 47.02] Teh LOLmod 1.8.62
« Reply #131 on: February 18, 2020, 06:02:49 pm »

The Polititians with new interactions i can remember are
Obama: Obama Prism
Trump: Build Wall
Bernie: summon supporters
The Libertarian one i forgot the Name of: summon supporter
Ted Cruz: Zodiak Stealth
Logged

Enemy post

  • Bay Watcher
  • Modder/GM
    • View Profile
Re: [Community Mod 47.02] Teh LOLmod 1.8.63
« Reply #132 on: February 19, 2020, 08:06:32 pm »

TheRedwolf's new content has been added to the mod.
Logged
My mods and forum games.
Enemy post has claimed the title of Dragonsong the Harmonic of Melodious Exaltion!

voliol

  • Bay Watcher
    • View Profile
    • Website
Re: [Community Mod 47.02] Teh LOLmod 1.8.63
« Reply #133 on: March 30, 2020, 04:16:03 am »

A few fixes/additions that could be made before NecroThreat V commences:
  • Give DEMON to the sealed memes.
  • Give a nose to the trollface, and sealed meme castes FOREVER_ALONE and ME_GUSTA, and FACIAL_FEATURES+BODY_DETAIL_PLAN:HUMANOID_HEAD_POSITIONS to all of the meme-faces.
How come the meme-faces have large eye teeth, by the way, is it intentional?

Enemy post

  • Bay Watcher
  • Modder/GM
    • View Profile
Re: [Community Mod 47.02] Teh LOLmod 1.8.63
« Reply #134 on: March 30, 2020, 11:18:07 am »

Good suggestions, I’ll add them before Necrothreat V starts up.

I don’t think I was involved with the meme faces besides trollface, so I wouldn’t know. Trollface is modeled on a hungry head however, so I suspect it’s a relic of that.

*The edits have been done.
« Last Edit: March 31, 2020, 10:48:57 pm by Enemy post »
Logged
My mods and forum games.
Enemy post has claimed the title of Dragonsong the Harmonic of Melodious Exaltion!
Pages: 1 ... 7 8 [9] 10 11