Bay 12 Games Forum

Please login or register.

Login with username, password and session length
Advanced search  

Author Topic: Adventurer mode problem. I got caged  (Read 1903 times)

Vozhban

  • Bay Watcher
    • View Profile
Adventurer mode problem. I got caged
« on: December 02, 2014, 03:21:24 pm »

Ive been playing as an adventurer for some time and found a goblin camp. With my squad of five warriors I charged them and got hit by a net-thrower. Now my adventurer is caged. In a beautiful pink cage. Time keeps going(I've almost died of thirst for now) and it seems i have no way to leave the cage. So I am interested if anybody knows how to escape the cage, or all I have to do is wait for death?
Logged

Rumrusher

  • Bay Watcher
  • current project : searching...
    • View Profile
Re: Adventurer mode problem. I got caged
« Reply #1 on: December 03, 2014, 06:10:17 pm »

You could use gui/gm-editor df.global.world.units.active[0] and dive into the flags section to find the caged flag and untick that to free yourself.
This kind of thing is why cage traps don't work in vanilla any more. you best want to destroy the cage that holds your self or you going to quantum leap once you leave the area or fast travel.
Logged
I thought I would I had never hear my daughter's escapades from some boy...
DAMN YOU RUMRUSHER!!!!!!!!
"body swapping and YOU!"
Adventure in baby making!Adv Homes

Boltgun

  • Bay Watcher
  • [UTTERANCES]
    • View Profile
Re: Adventurer mode problem. I got caged
« Reply #2 on: December 04, 2014, 03:54:38 am »

I added a note to myself to add an adv reaction to uncage yourself, that should fix such issue in the future.
Logged

Vozhban

  • Bay Watcher
    • View Profile
Re: Adventurer mode problem. I got caged
« Reply #3 on: December 04, 2014, 05:50:01 am »

I tried to use gm-editor, but the problem was that controls were not working, so I couldn't select myself. Timeflow was like in fortress mode, but slower. 3 days in about 30 minutes. And nothing except ESC worked.
Logged

evictedSaint

  • Bay Watcher
  • if (ANNOYED_W_FANS==true) { KILL_CHAR(rand()); }
    • View Profile
Re: Adventurer mode problem. I got caged
« Reply #4 on: December 04, 2014, 02:05:44 pm »

I had a similar problem with a statue a while back.

I have no idea if it'll work correctly, but you can use dfhack "changeitem" command to change the material of the cage to something that will harmlessly boil away at room temperature.

Boltgun

  • Bay Watcher
  • [UTTERANCES]
    • View Profile
Re: Adventurer mode problem. I got caged
« Reply #5 on: December 04, 2014, 04:53:16 pm »

I tried to use gm-editor, but the problem was that controls were not working, so I couldn't select myself. Timeflow was like in fortress mode, but slower. 3 days in about 30 minutes. And nothing except ESC worked.

Bah, that take away options.
Logged

Meph

  • Bay Watcher
    • View Profile
    • worldbicyclist
Re: Adventurer mode problem. I got caged
« Reply #6 on: December 06, 2014, 03:45:47 pm »

Maybe it would be best to somehow restrict the cages that are shot to a material that withers away. If they have a fixed temp and a fixed heat dam point, they could degrade slowly away, maybe 1 month in fortress mode. That would stop them from being so overpowered.
Logged
::: ☼Meph Tileset☼☼Map Tileset☼- 32x graphic sets with TWBT :::
::: ☼MASTERWORK DF☼ - A comprehensive mod pack now on Patreon - 250.000+ downloads and counting :::
::: WorldBicyclist.com - Follow my bike tours around the world - 148 countries visited :::

Rumrusher

  • Bay Watcher
  • current project : searching...
    • View Profile
Re: Adventurer mode problem. I got caged
« Reply #7 on: December 09, 2014, 02:37:28 pm »

 still find it better to write an adventurer script that would allow the player to pick the lock of the cage.

oh here's a simple one.

Code: [Select]
df.global.world.units.active[0].flags1.caged=false
just tested this in arena mode all you need to do is make an escape.lua file with this line in it.
Presto your character will escape from any cage trap, with a few hours taken from their life, hell you could map this to a keybinding if you want.
Logged
I thought I would I had never hear my daughter's escapades from some boy...
DAMN YOU RUMRUSHER!!!!!!!!
"body swapping and YOU!"
Adventure in baby making!Adv Homes

Meph

  • Bay Watcher
    • View Profile
    • worldbicyclist
Re: Adventurer mode problem. I got caged
« Reply #8 on: December 09, 2014, 02:42:02 pm »

still find it better to write an adventurer script that would allow the player to pick the lock of the cage.

oh here's a simple one.

Code: [Select]
df.global.world.units.active[0].flags1.caged=false
just tested this in arena mode all you need to do is make an escape.lua file with this line in it.
Presto your character will escape from any cage trap, with a few hours taken from their life, hell you could map this to a keybinding if you want.
Neat. :)

You can even map it to an interaction with syndrome-trigger. "Free yourself from cage". :)
Logged
::: ☼Meph Tileset☼☼Map Tileset☼- 32x graphic sets with TWBT :::
::: ☼MASTERWORK DF☼ - A comprehensive mod pack now on Patreon - 250.000+ downloads and counting :::
::: WorldBicyclist.com - Follow my bike tours around the world - 148 countries visited :::

Boltgun

  • Bay Watcher
  • [UTTERANCES]
    • View Profile
Re: Adventurer mode problem. I got caged
« Reply #9 on: December 10, 2014, 04:53:06 am »

still find it better to write an adventurer script that would allow the player to pick the lock of the cage.

oh here's a simple one.

Code: [Select]
df.global.world.units.active[0].flags1.caged=false
just tested this in arena mode all you need to do is make an escape.lua file with this line in it.
Presto your character will escape from any cage trap, with a few hours taken from their life, hell you could map this to a keybinding if you want.
Neat. :)

You can even map it to an interaction with syndrome-trigger. "Free yourself from cage". :)

That's the idea, if the powers or reaction menu is accessible while caged you can add a way  for players to free themselves.
Logged

Rumrusher

  • Bay Watcher
  • current project : searching...
    • View Profile
Re: Adventurer mode problem. I got caged
« Reply #10 on: December 10, 2014, 02:06:44 pm »

still find it better to write an adventurer script that would allow the player to pick the lock of the cage.

oh here's a simple one.

Code: [Select]
df.global.world.units.active[0].flags1.caged=false
just tested this in arena mode all you need to do is make an escape.lua file with this line in it.
Presto your character will escape from any cage trap, with a few hours taken from their life, hell you could map this to a keybinding if you want.
Neat. :)

You can even map it to an interaction with syndrome-trigger. "Free yourself from cage". :)

That's the idea, if the powers or reaction menu is accessible while caged you can add a way  for players to free themselves.
wait reaction menu and powers , I say either Dfhack quick fix or if you want to get fancy build a tweak that checks if the adventurer is caged, then prompts a ui asking them if they want to be freed.
or if you want to be super fancy built in minigame you play to break the cage.
I say this because you can't access powers or reaction menu while caged because the game kinda prevents you from taking a turn. Skipping you until you're out of the cage or died.
Logged
I thought I would I had never hear my daughter's escapades from some boy...
DAMN YOU RUMRUSHER!!!!!!!!
"body swapping and YOU!"
Adventure in baby making!Adv Homes