Skip to content

Commit b745d61

Browse files
committed
fixed targeting
1 parent 083f956 commit b745d61

File tree

5 files changed

+37
-22
lines changed

5 files changed

+37
-22
lines changed

gui.tt

+10-1
Original file line numberDiff line numberDiff line change
@@ -264,9 +264,18 @@
264264
#nop {{text}{includes the talkers name "..."}{channel}{"says"}{talker}{"includes color sdfsdaf"}};
265265
}
266266

267+
#ALIAS {room_window_highlight %1 %2 %3}
268+
{
269+
#list room_window[tab][%1] find {%*%2%*} idx;
270+
#if {$idx === 0} { #return };
271+
272+
#var room_window[tab][%1][$idx] %3;
273+
room_window_draw_data;
274+
}
275+
267276
#ALIAS {room_window_show %1 %2}
268277
{
269-
#list room_window[tab][%1] ins +1 {%2};
278+
#list room_window[tab][%1] ins -1 {%2};
270279
room_window_draw_data;
271280
}
272281

itemslist.tt

+4-3
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,14 @@
88
{Mask} {}
99
{bell} {}
1010
{fetish} {}
11+
{medallion} {}
1112
}
1213
{the bog of Ashtan}
1314
{
1415
{cauldron} {}
1516
}
1617
}
1718

18-
#CLASS {itemslist} CLOSE
19-
#CLASS {itemslist} SAVE
20-
2119
deregisterEvent getItems getGold;
2220
deregisterEvent getItems getItems;
2321

@@ -68,3 +66,6 @@ registerEvent getItems getItems;
6866
};
6967
}
7068

69+
#CLASS {itemslist} CLOSE
70+
#CLASS {itemslist} SAVE
71+

pointsofinterest.tt

+5
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,11 @@
5454
{name} {}
5555
{number} {5128}
5656
}
57+
{fwatch}
58+
{
59+
{name} {Before a decayed wooden gate (road)}
60+
{number} {7694}
61+
}
5762
{gates}
5863
{
5964
{name} {Entering the main gate of Ashtan}

targeting.tt

+10-17
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,7 @@ registerEvent CharItemsAdd targeting.onCharItemsAdd;
4141

4242
#local attri $item[attrib];
4343

44-
dbg Item added dropped $item[name];
4544
#if {"$attri" == "%*t%*"} {
46-
dbg Item added $item[name];
4745
#local TakableItem $item[name]; #nop will be used in the event getItems;
4846
raiseEvent getItems;
4947
};
@@ -55,15 +53,16 @@ registerEvent CharItemsAdd targeting.onCharItemsAdd;
5553
#local item <279>$name<028>$id<099>;
5654

5755
room_window_show items $item;
58-
#continue;
5956
};
6057

61-
#local name $item[name];
62-
#local id $item[id];
63-
#local mob <279>$name<028>$id<099>;
64-
#var roomMobs[$id] {$name};
65-
66-
room_window_show mobs $mob;
58+
#if {"$attri" == "%*m%*" }
59+
{
60+
#local name $item[name];
61+
#local id $item[id];
62+
#local mob <279>$name<028>$id<099>;
63+
#var roomMobs[$id] {$name};
64+
room_window_show mobs $mob;
65+
};
6766
}
6867

6968
registerEvent CharItemsList targeting.onCharItemsList;
@@ -118,13 +117,8 @@ registerEvent CharItemsRemove targeting.onCharItemsRemove;
118117

119118
#local item $gmcp[char][items][remove][item];
120119
#local id $item[id];
121-
#local attri $item[attrib];
122120

123121
room_window_remove $id;
124-
125-
#local id $item[id];
126-
127-
info Removing $id;
128122
#unvar roomMobs[$id];
129123
}
130124

@@ -176,16 +170,15 @@ registerEvent CharItemsRemove targeting.onCharItemsRemove;
176170
#foreach *targets[$areaName][] tar {
177171

178172
#if {"$roomMobs[$denizenid]" == "%*$tar%*"} {
179-
info Setting target to: $denizenid;
173+
dbg Setting target to: $denizenid, checked against $tar;
180174
#var atkTarget $denizenid;
181175
#send {settarget $denizenid};
182176
attackCmd $denizenid;
183177

184178
#local name $roomMobs[$denizenid];
185179
#local mob <201>$name<001>$denizenid<099>;
186180

187-
room_window_remove $denizenid;
188-
room_window_show mobs $mob;
181+
room_window_highlight mobs $denizenid $mob;
189182
#return;
190183
};
191184
};

targetlist.tt

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#CLASS {targetlist} OPEN
22

3-
#VARIABLE {areaName} {the Dungeon of the Beastlords}
3+
#VARIABLE {areaName} {Forest Watch}
44
#VARIABLE {targets}
55
{
66
{Ashtan}
@@ -11,6 +11,11 @@
1111
{
1212
{guard} {}
1313
}
14+
{Forest Watch}
15+
{
16+
{buckawn} {}
17+
{zombie} {}
18+
}
1419
{Saiha'balan Grotto}
1520
{
1621
{Altor'ea} {}
@@ -64,6 +69,8 @@
6469
{cloaked} {}
6570
{crazed} {}
6671
{initiate} {}
72+
{ophidian} {}
73+
{ritualist} {}
6774
}
6875
{the Ioje compound}
6976
{

0 commit comments

Comments
 (0)