Цитата(Night @ 20.5.2007, 20:15)

Цитата(Weird @ 20.5.2007, 20:09)

Цитата
Как теперь попасть в локацию ra_temple.gat ? Налог статуе в 50к уплачен, прислужница у храма несет околесицу. Сам варп предлагает лишь пнуть дверь или раздолбать оружием.
та же проблема, будет дан ответ или нет?
раздолбай оружием
Ошибся в названии локации, на самом деле ее звать re_temin.gat, но вижу ты понял о чем речь. Пункт раздолбать оружием дверь, конечно же, выбирал всякий, кто туда приходил, на это лишь бешеная прислужница орет "Stop that".
Судя по всему вот этот кусок скрипта отвечает за дверь в храм. Но по нему невозможно попасть внутрь ><
11 человек уже пожертвовали статуе по 50к, осталось еще 9989 пожертвований ...
Код
OnTouch:
- mes "** The door is locked. **";
- next;
- menu "Kick it",-,"Take out your weapon",L_weap,"Pray to the goddess",L_enter;
-
- emotion 23;
- mes "[Bishop Nema]";
- mes "Please stop!";
- close;
-
-L_weap:
- emotion 23;
- close;
-
-L_enter:
- mes "** The door opens. **";
- close2;
- warp "ra_temin",169,23;
- end;
-}
-
-ra_temple,116,174,3 script Bishop Nema 920,{
-
- mes "[Bishop Nema]";
+ mes " == The Door is locked. ==";
+ next;
+ menu "Kick it open with your foot.",-,"Take it down with your weapons.",-;
+
+ doEvent "Cleric Nema::OnEmotion";
+ mes "[Cleric Nema]";
+ mes "Please, don't do that!";
+ close;
+}
+
+ra_temple,116,174,3 script Cleric Nema 920,{
+
+ mes "[Cleric Nema]";
mes "I need to get in somehow...";
- mes "Previously, another Bishop told me that there was";
+ mes "Previously, another Cleric told me that there was";
mes "a couple that snuck in the temple as a joke, but";
mes "I'm not sure how.";
next;
- mes "[Bishop Nema]";
+ mes "[Cleric Nema]";
mes "Hmm.. and who were they?";
mes "Oh, what do I do..";
close;
-}
+
+OnEmotion:
+ emotion 23;
+ end;
+}