Could someone cut and paste what their door values are? Mine are as
follows:
Act_Move.c
if ( !str_cmp( arg, "n" ) || !str_cmp( arg, "north" ) ) door = 0;
else if ( !str_cmp( arg, "e" ) || !str_cmp( arg, "east" ) ) door = 1;
else if ( !str_cmp( arg, "s" ) || !str_cmp( arg, "south" ) ) door = 2;
else if ( !str_cmp( arg, "w" ) || !str_cmp( arg, "west" ) ) door = 3;
else if ( !str_cmp( arg, "u" ) || !str_cmp( arg, "up" ) ) door = 4;
else if ( !str_cmp( arg, "d" ) || !str_cmp( arg, "down" ) ) door = 5;
else if ( !str_cmp( arg, "ne" ) || !str_cmp( arg, "northeast" ) ) door =
6;
else if ( !str_cmp( arg, "nw" ) || !str_cmp( arg, "northwest" ) ) door =
7;
else if ( !str_cmp( arg, "se" ) || !str_cmp( arg, "southeast" ) ) door =
8;
else if ( !str_cmp( arg, "sw" ) || !str_cmp( arg, "southwest" ) ) door =
9;
Heres my rev_dir in the same c file:
char *const dir_name[] = {
"north", "east", "south", "west", "up", "down", "northeast",
"northwest",
"southeast", "southwest"
};
const sh_int rev_dir[] = {
2, 3, 0, 1, 5, 4, 9, 8, 7, 6
};
const sh_int movement_loss[SECT_MAX] = {
1, 2, 2, 3, 4, 6, 4, 1, 6, 10, 6
I showed you mine now hows about showing me yours... ;-)
Dantin
P.S. That is if you have extraexits installed.
Thanks again for your help before hand.