sorry, but I don´t know the quest you are searching for.
But next time, please ask not in this area, go to "Metin2 PServer - Discussions / Questions". And don´t say, that you didn´t get it, because the name of the topic is in english and you should read it!
ich vermute, er will ne funktionierende reichsschlacht für 2010er sf haben.
das problem bei den 2010er sf ist, dass einige befehle weggefallen sind.
das erste problem ist schonmal, dass
nicht mehr geht, denn die funktionen forked.getpassstartposx() und forked.getpassstartposy() gibt es nicht mehr.
man könnte sie sich aber eventuell selber schreiben.
ka ob noch weitere funktionen fehlen.
2010 sf Reichsschlacht does not work please help me
Code:
quest forked_road begin
state start begin
when login begin
-- 114 sungzi
-- 115 116 117 118 119 120 Road
if forked.isforkedmapindex( pc.get_map_index() ) == 1 then
if game.get_event_flag("threeway_war") == 0 then
warp_to_village();
else
--if forked.getdeadcount() <= 0 then
-- warp_to_village();
--end
if forked.issungzimapindex( pc.get_map_index() ) == 0 then
say( "Reichsschlacht" )
say( "Dringe vor zum Tiegergeist, der am ende" )
say( "dieser Map auf dich wartet und töte ihn!" )
say( "Nur er besitzt das magische Siegel:" )
say_item( "Es öffnet das Tor!",50089,"");
else
say( "Wilkommen in der Reichsschlacht!" )
say( "Hier könnt ihr den anderen Reichen" )
say( "Reichen mal richtig den hintern versohlen" )
say( "und eure stärken im Kampf Messen!" )
end
end
end
end
when 11001.chat."Reichsschlacht" or 11003.chat."Reichsschlacht" or 11005.chat."Reichsschlacht" begin
if game.get_event_flag("threeway_war") == 0 then
say("Die Tore zur Reichsschlacht sind")
say("im Moment geschlossen!")
else
say("Hallo!")
say("Zur Zeit ist eine Reichsschlacht!")
say("Möchtest du beitreten?")
local s = select("Ja","Nein!")
if s == 1 then
if pc.get_level() < 50 then
say("Dein Level ist noch zu niedrig! Komm mit 50 wieder!");
return
end
forked.setdeadcount();
if pc.getempire() == 1 then
if game.get_event_flag("threeway_war_open_gate1" ) == 0 then
say("¦pªG¸t¦aªºªù¥´¶}¤§«á,«K¤£¯à¶i¤J¤T°êª§ÅQ.[ENTER] ½Ğ¯¬ºÖ§Ú*Ì,§Ú*̪º«Ò°ê«K¥i¥Hª§¹Ü*n¸t¦a!" );
return
end
elseif pc.getempire() == 2 then
if game.get_event_flag("threeway_war_open_gate2" ) == 0 then
say("¦pªG¸t¦aªºªù¥´¶}¤§«á,«K¤£¯à¶i¤J¤T°êª§ÅQ.[ENTER] ½Ğ¯¬ºÖ§Ú*Ì,§Ú*̪º«Ò°ê«K¥i¥Hª§¹Ü*n¸t¦a!" );
return
end
elseif pc.getempire() == 3 then
if game.get_event_flag("threeway_war_open_gate3" ) == 0 then
say("¦pªG¸t¦aªºªù¥´¶}¤§«á,«K¤£¯à¶i¤J¤T°êª§ÅQ.[ENTER] ½Ğ¯¬ºÖ§Ú*Ì,§Ú*̪º«Ò°ê«K¥i¥Hª§¹Ü*n¸t¦a!" );
return
end
else
say(locale.forked_man_say_you_cant2 )
end
pc.warp( forked.getpassstartposx() , forked.getpassstartposy() )
end
end
end
when 1306.kill begin
game.drop_item(50089, 1 )
say("Der Tiegergeist hat das Siegel fallengelassen![ENTER]Es gewährt dir den Beitritt zur Schlacht!") ;
end
when 20081.take with item.vnum == 50089 begin
say_in_map( pc.get_map_index() , locale.forked_open_gate , 1);
npc.purge()
item.remove()
--??? ???
forked.setdeadcount()
forked.initkillcount()
forked.initmobkillcount()
if pc.getempire() == 1 then
game.set_event_flag("threeway_war_open_gate1", 0 )
notice_all("Euer Reich hat das Siegel geöffnet." )
elseif pc.getempire() == 2 then
game.set_event_flag("threeway_war_open_gate2", 0 )
notice_all("Euer Reich hat das Siegel geöffnet." )
elseif pc.getempire() == 3 then
game.set_event_flag("threeway_war_open_gate3", 0 )
notice_all("Euer Reich hat das Siegel geöffnet." )
else
say(locale.forked_man_say_you_cant2 )
end
local iEmpire = pc.getempire()
warp_all_in_map( pc.get_map_index() , forked.getsungzimapindex() ,forked.getsungziposx() , forked.getsungziposy() , 10 );
end
when 11001.chat."Reichschlachtsverwaltung" or 11003.chat."Reichschlachtsverwaltung" or 11005.chat."Reichschlachtsverwaltung" with pc.is_gm() begin
local s = select("Reichsschlacht starten" , "Reichsschlacht beenden" );
if s == 1 then
-- ??? ?? ?? ?? ???
kill_all_in_map( forked.getsungzimapindex() );
kill_all_in_map( forked.getpassmapindexbyempire(1) );
kill_all_in_map( forked.getpassmapindexbyempire(2) );
kill_all_in_map( forked.getpassmapindexbyempire(3) );
-- ???
forked.initforked()
-- ??? ??? ??
regen_in_map( forked.getpassmapindexbyempire(1), forked.getpasspathbyempire(1) .."regen.txt" );
regen_in_map( forked.getpassmapindexbyempire(1), forked.getpasspathbyempire(1) .."npc.txt" );
regen_in_map( forked.getpassmapindexbyempire(2), forked.getpasspathbyempire(2) .."regen.txt" );
regen_in_map( forked.getpassmapindexbyempire(2), forked.getpasspathbyempire(2) .."npc.txt" );
regen_in_map( forked.getpassmapindexbyempire(3), forked.getpasspathbyempire(3) .."regen.txt" );
regen_in_map( forked.getpassmapindexbyempire(3), forked.getpasspathbyempire(3) .."npc.txt" );
-- ?? ??? ??
game.set_event_flag("threeway_war",1)
-- ??? ?? ? ?? ??
game.set_event_flag("threeway_war_dead_count", 5)
game.set_event_flag("threeway_war_mob_count", 150 )
game.set_event_flag("threeway_war_kill_count", 200 )
game.set_event_flag("threeway_war_kill_boss_count", 1 );
-- ??? ?? ??/?? ??
game.set_event_flag("threeway_war_open_gate1", 1 )
game.set_event_flag("threeway_war_open_gate2", 1 )
game.set_event_flag("threeway_war_open_gate3", 1 )
notice_all("REICHSSCHLACHT GESTARTET!")
notice_all("Begebt euch alle zum Schlachtenverwalter!" )
else
game.set_event_flag("threeway_war",0)
kill_all_in_map( forked.getsungzimapindex() );
kill_all_in_map( forked.getpassmapindexbyempire(1) );
kill_all_in_map( forked.getpassmapindexbyempire(2));
kill_all_in_map( forked.getpassmapindexbyempire(3));
notice_all("REICHSSCHLACHT BEENDET!")
warp_all_to_village( forked.getsungzimapindex() , 1 )
warp_all_to_village( forked.getpassmapindexbyempire(1) , 1 )
warp_all_to_village( forked.getpassmapindexbyempire(2) , 1 )
warp_all_to_village( forked.getpassmapindexbyempire(3) , 1 )
end
end
end
end
2010sf 04/29/2011 - Metin2 Private Server - 3 Replies hi,
ich hab 2 stunden lang gegoogelt hab aber keine 2010sf gefunden.
Die daroo files bringen auch nix weil ich sie fur root brauche und nicht fur vpc.
wäre jemand so nett und würde mir den dl link schicken.
Thanks
[Help]2010SF 04/10/2011 - Metin2 Private Server - 0 Replies Hi,
I have a problem with 2010sf.
So, with files from 2010.
For me everything works.
But when a colleague wants to enter the server logs it in the choice of form.
The server is placed on hamachi.
I do not know what to blame but for ordinary files rain'a everything works.
Please help.
2010SF 02/13/2011 - Metin2 Private Server - 8 Replies Hay liebe *Epvp Comunity
Ich habe 2010 SF aber ich weis nicht ob die echt sind.
Kan mir villeicht einer helfen und sagen woran ich das erkenne?
MFG:Skyliner
how can i find 2010SF 02/10/2011 - Metin2 Private Server - 2 Replies :mad: i have search & search & search for 2010SF & unfortunately i cant find
a Download link ... is 2010 file not free :confused: or you need to pay for get him:( so plz if ther a link or anythings just buthim in the replay :D
i well be so glad :D:D ...........:awesome:
Help with 2010SF 01/31/2011 - Metin2 Private Server - 3 Replies Hallo Jungs, zunächst einmal möchte ich für die schlechte Verwendung der deutschen Sprache zu entschuldigen, aber ich übersetzte alles mit Google übersetzen.
Ich werde mit 2010 Dateien verrückt, ich weiß nicht vielleicht weiß, ich könnte mit Erfolg gestartet, ich erinnere mich, dass ich es starten alle lokal, und dann habe ich die auth modded, ich habe auf Elite finden wollen ...
Ich werde verrückt, weil ich nicht weiß, wie man das Spiel einloggen, ich kaum folgte die Führung. Infinity, aber...