Welcome to the Builder Academy

Question re: scatter equipment across a zone on death

More
15 Mar 2025 12:36 - 16 Mar 2025 00:40 #10592 by zi
I've played muds with the afterlife snippet, I've played some hardcore one where you have to go fetch (god forbid you die in a tough zone) but I've always thought it would be interesting if your stuff were sorta scattered across the zone. I can't come up with a sci-fi justification just yet, but I will.

This is what I have... it works great AS LONG AS I DONT DO ANY ROOM FLAG CHECKS!
Code:
#include "oasis.h" // some funky zone table calls so I'm dipping in oasis /* spread out character's equipment across zone - Zi */ if (IS_NPC(ch)) {   /* transfer character's equipment to the corpse for mobs standard TBA stuff*/   int i;   for (i = 0; i < NUM_WEARS; i++)   if (GET_EQ(ch, i)) {     remove_otrigger(GET_EQ(ch, i), ch);     obj_to_obj(unequip_char(ch, i), corpse);     }   } else { // here were it start!     int i, top, bot, z, sendit; // use these vars     z = world[IN_ROOM(ch)].zone; // what zone is the player in?     bot = zone_table[z].bot; // get the bottom number     top = zone_table[z].top; // get the top number     for (i = 0; i < NUM_WEARS; i++) // for everything equipped on the player     if (GET_EQ(ch, i)) { //grab first piece of eq       do {         sendit = rand_number(bot, top); //grab a rando number in that zone          } while (ROOM_FLAGGED(sendit, ROOM_PRIVATE) || ROOM_FLAGGED(sendit, ROOM_DEATH) ||            ROOM_FLAGGED(sendit, ROOM_GODROOM) || real_room(sendit) == NOWHERE ); //if these conditions ^ are TRUE then go back and calculate... real_room is wrong?       obj_to_room(unequip_char(ch, i), real_room(sendit)); //uneq the eq from char and send it to the random room's real number    } // until all player eq is gone } // that's a wrap



So where have I gone wrong? When I take out the do/while it works great, but sends eq to NOWHERE... I stole those flag checks from spell_teleport - same idea!

EDIT: OHHHHHH OKAY SO sorry, caps lock was on. Okay, so I took out the room flags and just did the nowhere check (ensuring that transferring that piece of equipment would go to a valid room) and lo and behold, it worked. In fact, I have a test zone with just 3 rooms and a lil test code spams all the attempts at finding a valid room...

SO - this has everything to do with room flags. I'm off to grep things! Stay tuned!


DOUBLE EDIT AND UPDATE: just a simple room_flagged check (while ROOM_FLAGGED(sendit, ROOM_DEATH) ) and I get this:
Code:
./autorun: line 173: 860742 Segmentation fault      (core dumped) nohup bin/circle $FLAGS $PORT >> syslog 2>&1

bug or am I breaking things?

Here's the debug
Code:
Program received signal SIGSEGV, Segmentation fault. 0x0000000000484153 in make_corpse (ch=0xb30be0) at fight.c:222 222 (ROOM_FLAGGED(sendit, ROOM_DEATH)); (gdb) bt #0  0x0000000000484153 in make_corpse (ch=0xb30be0) at fight.c:222 #1  raw_kill (ch=ch@entry=0xb30be0, killer=killer@entry=0xb2be70) at fight.c:302 #2  0x000000000042a37a in do_kill (ch=0xb2be70, argument=<optimized out>, cmd=535, subcmd=<optimized out>)     at act.offensive.c:138 #3  0x00000000004a4f80 in command_interpreter (ch=0xb2be70, argument=<optimized out>,     argument@entry=0x7ffffffe9cc0 "kil mil") at interpreter.c:596 #4  0x000000000045c69a in game_loop (local_mother_desc=3) at comm.c:903 #5  0x00000000004026d7 in init_game (local_port=<optimized out>) at comm.c:540 #6  main (argc=<optimized out>, argv=<optimized out>) at comm.c:351 (gdb) info local buf2 = "the corpse of Milholy\000is lying here.\000\000\000\000p\227\376\377\377\177\000\000p\276\262\000\000\000\000\000\353,I\000\000\000\000\000p\227\376\377\377\177\000\000p\227\376\377" corpse = 0xb325e0 money = <optimized out> top = 10099 z = <optimized out> x = 4 o = <optimized out> i = 1 y = 4 bot = 10000 sendit = 10037 buf2 = <optimized out> corpse = <optimized out> o = <optimized out> money = <optimized out> i = <optimized out> x = <optimized out> y = <optimized out> top = <optimized out> bot = <optimized out> z = <optimized out> sendit = <optimized out>
Last edit: 16 Mar 2025 00:40 by zi.

Please Log in or Create an account to join the conversation.

More
16 Mar 2025 11:33 - 16 Mar 2025 11:34 #10594 by thomas
It looks like sendit should be initialized slightly differently.
Code:
for (i = 0; i < NUM_WEARS; i++) // for everything equipped on the player     if (GET_EQ(ch, i)) { //grab first piece of eq       do {         sendit = real_room(rand_number(bot, top)); //grab a rando number in that zone         } while (sendit == NOWHERE || ROOM_FLAGGED(sendit, ROOM_PRIVATE) || ROOM_FLAGGED(sendit, ROOM_DEATH) ||           ROOM_FLAGGED(sendit, ROOM_GODROOM)); //if these conditions ^ are TRUE then go back and calculate... real_room is wrong?       obj_to_room(unequip_char(ch, i), sendit); //uneq the eq from char and send it to the random room's real number   } // until all player eq is gone
Last edit: 16 Mar 2025 11:34 by thomas. Reason: formatting

Please Log in or Create an account to join the conversation.

More
16 Mar 2025 12:17 - 16 Mar 2025 16:01 #10595 by zi
I tried the above with the sendit redef and I still crash :(
Last edit: 16 Mar 2025 16:01 by zi.

Please Log in or Create an account to join the conversation.

More
17 Mar 2025 22:18 #10596 by thomas
in the same place?

Please Log in or Create an account to join the conversation.

More
18 Mar 2025 12:40 #10597 by zi
in any type of zone when checking for a flagged door I get a crash. I simplified, just put the godroom check and tested in a zone w no godroom... crash.

Please Log in or Create an account to join the conversation.

More
18 Mar 2025 19:46 #10599 by thomas
You _do_ have the sendit == NOWHERE check _first_, right?

Please Log in or Create an account to join the conversation.

Time to create page: 0.387 seconds