Quest Hilfe

06/07/2012 12:57 metin2sozluk#1
Hey guys, I need your advise about my new quest. I'm planning to write a quest part which sends other empires to their villages.

It should work like this.

PHP Code:
when 101.kill with pc.get_map_index()== INDEX begin
notice_all
("Jinno lost their dog."
--- and I want to send all Jinno players to their village.


Thanks :handsdown:
10/23/2012 06:08 giwrgos23#2
this is not notice_all
is notice_map that you want :-)
03/11/2013 17:22 metin2sozluk#3
Die Frage ist immer noch aktuelle. Ich will zurück zu senden Spieler ihre Karten; nach ihrem Reich. Wie kann ich dies tun, eine Idee?
11/23/2013 11:13 MagicianPT#4
Quote:
sends other empires to their villages.
PHP Code:
when 101.kill with pc.get_map_index()== INDEX begin
                     warp_to_village 
(pc.get_map_index())
end 
When a character kill a vnum 101 mob in that INDEX map number, it will be sent to he's village.

I hope I've helped.