|
You last visited: Today at 11:52
Advertisement
Dungeon without party
Discussion on Dungeon without party within the Flyff Private Server forum part of the Flyff category.
07/21/2015, 18:26
|
#1
|
elite*gold: 0
Join Date: Jul 2015
Posts: 16
Received Thanks: 2
|
Dungeon without party
I'm testing Server, and i want know if is possible to enter in dungeon without party with GM account, or how i can do it. Say me some solution....
Thanks
|
|
|
07/21/2015, 19:16
|
#2
|
elite*gold: 0
Join Date: Jan 2009
Posts: 1,741
Received Thanks: 1,674
|
You can't go in via GM command, because it won't create a layer for your character on that world (which makes it an instanced dungeon).
Solution: Remove that world from PartyDungeon.lua
|
|
|
07/21/2015, 19:30
|
#3
|
elite*gold: 0
Join Date: Jul 2015
Posts: 16
Received Thanks: 2
|
How?
Quote:
Originally Posted by xTwiLightx
You can't go in via GM command, because it won't create a layer for your character on that world (which makes it an instanced dungeon).
Solution: Remove that world from PartyDungeon.lua
|
Sorry xTwiLightx, but i'm not expert.....can u say me how i must do this mod? Thx
|
|
|
07/21/2015, 20:09
|
#4
|
elite*gold: 0
Join Date: Jun 2015
Posts: 95
Received Thanks: 30
|
PartyDungeon.lua
Code:
AddDungeon( "WI_INSTANCE_OMINOUS" )
--{
SetClass( CLASS_NORMAL, CLASS_MASTER, CLASS_HERO, CLASS_LEGEND_HERO )
SetLevel( 80, 300 )
SetCoolTime( MIN(120) )
--SetTeleportPos( ID_NORMAL, 1358, 102, 1315 )
--SetTeleportPos( ID_MIDBOSS, 695, 90, 684 )
--SetTeleportPos( ID_BOSS, 695, 100, 684 )
SetMonster( ID_NORMAL, "MI_PRICKANT04", true, 1280, 101, 1640 )
SetMonster( ID_NORMAL, "MI_MAULMOUSE04", true, 1234, 101, 1393 )
SetMonster( ID_NORMAL, "MI_CRIPESCENTIPEDE04", true, 1089, 101, 1590 )
SetMonster( ID_MIDBOSS, "MI_LYCANOS01", true, 1078, 101, 1359 )
SetMonster( ID_BOSS, "MI_VEMPAIN01", true, 1079, 101, 1457 )
--}
AddDungeon( "WI_INSTANCE_OMINOUS_1" )
--{
SetClass( CLASS_MASTER, CLASS_HERO, CLASS_LEGEND_HERO )
SetLevel( 1, 300 )
SetCoolTime( MIN(120) )
--SetTeleportPos( ID_NORMAL, 1358, 102, 1315 )
--SetTeleportPos( ID_MIDBOSS, 695, 90, 684 )
--SetTeleportPos( ID_BOSS, 695, 100, 684 )
SetMonster( ID_NORMAL, "MI_PRICKANT04_1", true, 1280, 101, 1640 )
SetMonster( ID_NORMAL, "MI_MAULMOUSE04_1", true, 1234, 101, 1393 )
SetMonster( ID_NORMAL, "MI_CRIPESCENTIPEDE04_1", true, 1089, 101, 1590 )
SetMonster( ID_MIDBOSS, "MI_LYCANOS01_1", true, 1078, 101, 1359 )
SetMonster( ID_BOSS, "MI_VEMPAIN01_1", true, 1079, 101, 1457 )
--}
AddDungeon( "WI_INSTANCE_DREADFULCAVE" )
--{
SetClass( CLASS_HERO, CLASS_LEGEND_HERO )
SetLevel( 121, 300)
SetCoolTime( MIN(180) )
--SetTeleportPos( ID_NORMAL, 1358, 102, 1315 )
--SetTeleportPos( ID_MIDBOSS, 695, 90, 684 )
--SetTeleportPos( ID_BOSS, 695, 100, 684 )
SetMonster( ID_MIDBOSS, "MI_DREADSTONE01", false, 928, 101, 198 )
SetMonster( ID_MIDBOSS, "MI_DREADSTONE02", false, 1504, 101, 419 )
SetMonster( ID_MIDBOSS, "MI_DREADSTONE03", false, 1397, 101, 893 )
SetMonster( ID_MIDBOSS, "MI_DREADSTONE04", false, 764, 101, 867 )
SetMonster( ID_MIDBOSS, "MI_DREADSTONE05", false, 675, 101, 560 )
SetMonster( ID_BOSS, "MI_SKELDEVIL", true, 1809, 101, 1395 )
--}
AddDungeon( "WI_INSTANCE_RUSTIA" )
--{
SetClass( CLASS_NORMAL, CLASS_MASTER, CLASS_HERO, CLASS_LEGEND_HERO )
SetLevel( 60, 300 )
SetCoolTime( MIN(60) )
--SetTeleportPos( ID_NORMAL, 1358, 102, 1315 )
--SetTeleportPos( ID_MIDBOSS, 695, 90, 684 )
--SetTeleportPos( ID_BOSS, 695, 100, 684 )
SetMonster( ID_MIDBOSS, "MI_RUSTIACRASHGATE01", false, 513, 101, 953 )
SetMonster( ID_MIDBOSS, "MI_RUSTIACRASHGATE02", false, 889, 101, 1121 )
SetMonster( ID_MIDBOSS, "MI_RUSTIACRASHGATE03", false, 926, 101, 850 )
SetMonster( ID_MIDBOSS, "MI_RUSTIACRASHGATE04", false, 1247, 101, 1272 )
SetMonster( ID_BOSS, "MI_BESIBIGFOOT01", true, 1126, 103, 1505 )
--}
AddDungeon( "WI_INSTANCE_RUSTIA_1" )
--{
SetClass( CLASS_MASTER, CLASS_HERO, CLASS_LEGEND_HERO )
SetLevel( 60, 300 )
SetCoolTime( MIN(60) )
--SetTeleportPos( ID_NORMAL, 1358, 102, 1315 )
--SetTeleportPos( ID_MIDBOSS, 695, 90, 684 )
--SetTeleportPos( ID_BOSS, 695, 100, 684 )
SetMonster( ID_MIDBOSS, "MI_RUSTIACRASHGATE01", false, 513, 101, 953 )
SetMonster( ID_MIDBOSS, "MI_RUSTIACRASHGATE02", false, 889, 101, 1121 )
SetMonster( ID_MIDBOSS, "MI_RUSTIACRASHGATE03", false, 926, 101, 850 )
SetMonster( ID_MIDBOSS, "MI_RUSTIACRASHGATE04", false, 1247, 101, 1272 )
SetMonster( ID_BOSS, "MI_BESIBIGFOOT02", true, 1126, 103, 1505 )
--}
AddDungeon( "WI_INSTANCE_BEHAMAH" )
--{
SetClass( CLASS_LEGEND_HERO )
SetLevel( 130, 300 )
SetCoolTime( MIN(360) )
--SetTeleportPos( ID_NORMAL, 1358, 102, 1315 )
--SetTeleportPos( ID_MIDBOSS, 695, 90, 684 )
--SetTeleportPos( ID_BOSS, 695, 100, 684 )
SetMonster( ID_MIDBOSS, "MI_BEHESTATUE01", false, 697, 100, 375 )
SetMonster( ID_MIDBOSS, "MI_BEHESTATUE01", false, 624, 100, 494 )
SetMonster( ID_MIDBOSS, "MI_BEHESTATUE01", false, 918, 100, 643 )
SetMonster( ID_MIDBOSS, "MI_BEHESTATUE01", false, 898, 100, 785 )
SetMonster( ID_MIDBOSS, "MI_BEHESTATUE01", false, 580, 100, 748 )
SetMonster( ID_BOSS, "MI_BEHEMOTH", true, 1261, 101, 1392 )
--}
AddDungeon( "WI_INSTANCE_KALGAS" )
--{
SetClass( CLASS_LEGEND_HERO )
SetLevel( 135, 300 )
SetCoolTime( MIN(360) )
--SetTeleportPos( ID_NORMAL, 1358, 102, 1315 )
--SetTeleportPos( ID_MIDBOSS, 695, 90, 684 )
--SetTeleportPos( ID_BOSS, 695, 100, 684 )
SetMonster( ID_MIDBOSS, "MI_KALGASSTELE01", false, 2807, 303, 801 )
SetMonster( ID_MIDBOSS, "MI_KALGASSTELE02", false, 1944, 303, 355 )
SetMonster( ID_MIDBOSS, "MI_KALGASEGG01", false, 976, 100, 192 )
SetMonster( ID_MIDBOSS, "MI_KALGASEGG01", false, 980, 100, 209 )
SetMonster( ID_MIDBOSS, "MI_KALGASEGG01", false, 969, 100, 190 )
SetMonster( ID_MIDBOSS, "MI_KALGASEGG01", false, 974, 100, 213 )
SetMonster( ID_BOSS, "MI_KALGASBOSS", true, 971, 101, 202 )
--}
AddDungeon( "WI_INSTANCE_UPRESIA" )
--{
SetClass( CLASS_NORMAL,CLASS_MASTER, CLASS_HERO, CLASS_LEGEND_HERO )
SetLevel( 75, 300 )
SetCoolTime( MIN(90) )
SetMonster( ID_BOSS, "MI_DREAMQEEN01", true, 2151, 100, 1727 )
--}
AddDungeon( "WI_INSTANCE_UPRESIA_1" )
--{
SetClass( CLASS_MASTER, CLASS_HERO, CLASS_LEGEND_HERO)
SetLevel( 75, 300 )
SetCoolTime( MIN(90) )
SetMonster( ID_BOSS, "MI_DREAMQEEN01_1", true, 2151, 100, 1727 )
--}
AddDungeon( "WI_INSTANCE_HERNEOS" )
--{
SetClass( CLASS_NORMAL,CLASS_MASTER, CLASS_HERO, CLASS_LEGEND_HERO )
SetLevel( 90, 300 )
SetCoolTime( MIN(90) )
SetMonster( ID_MIDBOSS, "MI_HERNSIREN01", true, 689, 100, 508 )
SetMonster( ID_BOSS, "MI_HERNKRAKEN01", true, 1942, 100, 1424 )
--}
AddDungeon( "WI_INSTANCE_HERNEOS_1" )
--{
SetClass( CLASS_MASTER, CLASS_HERO, CLASS_LEGEND_HERO )
SetLevel( 90, 300 )
SetCoolTime( MIN(90) )
SetMonster( ID_MIDBOSS, "MI_HERNSIREN01_1", true, 689, 100, 508 )
SetMonster( ID_BOSS, "MI_HERNKRAKEN01_1", true, 1942, 100, 1424 )
--}
AddDungeon( "WI_INSTANCE_SANPRES" )
--{
SetClass( CLASS_NORMAL, CLASS_MASTER, CLASS_HERO, CLASS_LEGEND_HERO )
SetLevel( 105, 300 )
SetCoolTime( MIN(90) )
SetMonster( ID_MIDBOSS, "MI_SHIPHIPPOGRIPH", true, 1961, 101, 253 )
SetMonster( ID_BOSS, "MI_SHIPHARPINEES", true, 1362, 109, 1730 )
--}
AddDungeon( "WI_INSTANCE_SANPRES_1" )
--{
SetClass( CLASS_MASTER, CLASS_HERO, CLASS_LEGEND_HERO)
SetLevel( 105, 300 )
SetCoolTime( MIN(90) )
SetMonster( ID_MIDBOSS, "MI_SHIPHIPPOGRIPH_1", true, 1961, 101, 253 )
SetMonster( ID_BOSS, "MI_SHIPHARPINEES_1", true, 1362, 109, 1730 )
--}
remove it.
|
|
|
07/21/2015, 20:49
|
#5
|
elite*gold: 0
Join Date: Jul 2015
Posts: 16
Received Thanks: 2
|
Thank you
Quote:
Originally Posted by *-Kaores-*
PartyDungeon.lua
Code:
AddDungeon( "WI_INSTANCE_OMINOUS" )
--{
SetClass( CLASS_NORMAL, CLASS_MASTER, CLASS_HERO, CLASS_LEGEND_HERO )
SetLevel( 80, 300 )
SetCoolTime( MIN(120) )
--SetTeleportPos( ID_NORMAL, 1358, 102, 1315 )
--SetTeleportPos( ID_MIDBOSS, 695, 90, 684 )
--SetTeleportPos( ID_BOSS, 695, 100, 684 )
SetMonster( ID_NORMAL, "MI_PRICKANT04", true, 1280, 101, 1640 )
SetMonster( ID_NORMAL, "MI_MAULMOUSE04", true, 1234, 101, 1393 )
SetMonster( ID_NORMAL, "MI_CRIPESCENTIPEDE04", true, 1089, 101, 1590 )
SetMonster( ID_MIDBOSS, "MI_LYCANOS01", true, 1078, 101, 1359 )
SetMonster( ID_BOSS, "MI_VEMPAIN01", true, 1079, 101, 1457 )
--}
AddDungeon( "WI_INSTANCE_OMINOUS_1" )
--{
SetClass( CLASS_MASTER, CLASS_HERO, CLASS_LEGEND_HERO )
SetLevel( 1, 300 )
SetCoolTime( MIN(120) )
--SetTeleportPos( ID_NORMAL, 1358, 102, 1315 )
--SetTeleportPos( ID_MIDBOSS, 695, 90, 684 )
--SetTeleportPos( ID_BOSS, 695, 100, 684 )
SetMonster( ID_NORMAL, "MI_PRICKANT04_1", true, 1280, 101, 1640 )
SetMonster( ID_NORMAL, "MI_MAULMOUSE04_1", true, 1234, 101, 1393 )
SetMonster( ID_NORMAL, "MI_CRIPESCENTIPEDE04_1", true, 1089, 101, 1590 )
SetMonster( ID_MIDBOSS, "MI_LYCANOS01_1", true, 1078, 101, 1359 )
SetMonster( ID_BOSS, "MI_VEMPAIN01_1", true, 1079, 101, 1457 )
--}
AddDungeon( "WI_INSTANCE_DREADFULCAVE" )
--{
SetClass( CLASS_HERO, CLASS_LEGEND_HERO )
SetLevel( 121, 300)
SetCoolTime( MIN(180) )
--SetTeleportPos( ID_NORMAL, 1358, 102, 1315 )
--SetTeleportPos( ID_MIDBOSS, 695, 90, 684 )
--SetTeleportPos( ID_BOSS, 695, 100, 684 )
SetMonster( ID_MIDBOSS, "MI_DREADSTONE01", false, 928, 101, 198 )
SetMonster( ID_MIDBOSS, "MI_DREADSTONE02", false, 1504, 101, 419 )
SetMonster( ID_MIDBOSS, "MI_DREADSTONE03", false, 1397, 101, 893 )
SetMonster( ID_MIDBOSS, "MI_DREADSTONE04", false, 764, 101, 867 )
SetMonster( ID_MIDBOSS, "MI_DREADSTONE05", false, 675, 101, 560 )
SetMonster( ID_BOSS, "MI_SKELDEVIL", true, 1809, 101, 1395 )
--}
AddDungeon( "WI_INSTANCE_RUSTIA" )
--{
SetClass( CLASS_NORMAL, CLASS_MASTER, CLASS_HERO, CLASS_LEGEND_HERO )
SetLevel( 60, 300 )
SetCoolTime( MIN(60) )
--SetTeleportPos( ID_NORMAL, 1358, 102, 1315 )
--SetTeleportPos( ID_MIDBOSS, 695, 90, 684 )
--SetTeleportPos( ID_BOSS, 695, 100, 684 )
SetMonster( ID_MIDBOSS, "MI_RUSTIACRASHGATE01", false, 513, 101, 953 )
SetMonster( ID_MIDBOSS, "MI_RUSTIACRASHGATE02", false, 889, 101, 1121 )
SetMonster( ID_MIDBOSS, "MI_RUSTIACRASHGATE03", false, 926, 101, 850 )
SetMonster( ID_MIDBOSS, "MI_RUSTIACRASHGATE04", false, 1247, 101, 1272 )
SetMonster( ID_BOSS, "MI_BESIBIGFOOT01", true, 1126, 103, 1505 )
--}
AddDungeon( "WI_INSTANCE_RUSTIA_1" )
--{
SetClass( CLASS_MASTER, CLASS_HERO, CLASS_LEGEND_HERO )
SetLevel( 60, 300 )
SetCoolTime( MIN(60) )
--SetTeleportPos( ID_NORMAL, 1358, 102, 1315 )
--SetTeleportPos( ID_MIDBOSS, 695, 90, 684 )
--SetTeleportPos( ID_BOSS, 695, 100, 684 )
SetMonster( ID_MIDBOSS, "MI_RUSTIACRASHGATE01", false, 513, 101, 953 )
SetMonster( ID_MIDBOSS, "MI_RUSTIACRASHGATE02", false, 889, 101, 1121 )
SetMonster( ID_MIDBOSS, "MI_RUSTIACRASHGATE03", false, 926, 101, 850 )
SetMonster( ID_MIDBOSS, "MI_RUSTIACRASHGATE04", false, 1247, 101, 1272 )
SetMonster( ID_BOSS, "MI_BESIBIGFOOT02", true, 1126, 103, 1505 )
--}
AddDungeon( "WI_INSTANCE_BEHAMAH" )
--{
SetClass( CLASS_LEGEND_HERO )
SetLevel( 130, 300 )
SetCoolTime( MIN(360) )
--SetTeleportPos( ID_NORMAL, 1358, 102, 1315 )
--SetTeleportPos( ID_MIDBOSS, 695, 90, 684 )
--SetTeleportPos( ID_BOSS, 695, 100, 684 )
SetMonster( ID_MIDBOSS, "MI_BEHESTATUE01", false, 697, 100, 375 )
SetMonster( ID_MIDBOSS, "MI_BEHESTATUE01", false, 624, 100, 494 )
SetMonster( ID_MIDBOSS, "MI_BEHESTATUE01", false, 918, 100, 643 )
SetMonster( ID_MIDBOSS, "MI_BEHESTATUE01", false, 898, 100, 785 )
SetMonster( ID_MIDBOSS, "MI_BEHESTATUE01", false, 580, 100, 748 )
SetMonster( ID_BOSS, "MI_BEHEMOTH", true, 1261, 101, 1392 )
--}
AddDungeon( "WI_INSTANCE_KALGAS" )
--{
SetClass( CLASS_LEGEND_HERO )
SetLevel( 135, 300 )
SetCoolTime( MIN(360) )
--SetTeleportPos( ID_NORMAL, 1358, 102, 1315 )
--SetTeleportPos( ID_MIDBOSS, 695, 90, 684 )
--SetTeleportPos( ID_BOSS, 695, 100, 684 )
SetMonster( ID_MIDBOSS, "MI_KALGASSTELE01", false, 2807, 303, 801 )
SetMonster( ID_MIDBOSS, "MI_KALGASSTELE02", false, 1944, 303, 355 )
SetMonster( ID_MIDBOSS, "MI_KALGASEGG01", false, 976, 100, 192 )
SetMonster( ID_MIDBOSS, "MI_KALGASEGG01", false, 980, 100, 209 )
SetMonster( ID_MIDBOSS, "MI_KALGASEGG01", false, 969, 100, 190 )
SetMonster( ID_MIDBOSS, "MI_KALGASEGG01", false, 974, 100, 213 )
SetMonster( ID_BOSS, "MI_KALGASBOSS", true, 971, 101, 202 )
--}
AddDungeon( "WI_INSTANCE_UPRESIA" )
--{
SetClass( CLASS_NORMAL,CLASS_MASTER, CLASS_HERO, CLASS_LEGEND_HERO )
SetLevel( 75, 300 )
SetCoolTime( MIN(90) )
SetMonster( ID_BOSS, "MI_DREAMQEEN01", true, 2151, 100, 1727 )
--}
AddDungeon( "WI_INSTANCE_UPRESIA_1" )
--{
SetClass( CLASS_MASTER, CLASS_HERO, CLASS_LEGEND_HERO)
SetLevel( 75, 300 )
SetCoolTime( MIN(90) )
SetMonster( ID_BOSS, "MI_DREAMQEEN01_1", true, 2151, 100, 1727 )
--}
AddDungeon( "WI_INSTANCE_HERNEOS" )
--{
SetClass( CLASS_NORMAL,CLASS_MASTER, CLASS_HERO, CLASS_LEGEND_HERO )
SetLevel( 90, 300 )
SetCoolTime( MIN(90) )
SetMonster( ID_MIDBOSS, "MI_HERNSIREN01", true, 689, 100, 508 )
SetMonster( ID_BOSS, "MI_HERNKRAKEN01", true, 1942, 100, 1424 )
--}
AddDungeon( "WI_INSTANCE_HERNEOS_1" )
--{
SetClass( CLASS_MASTER, CLASS_HERO, CLASS_LEGEND_HERO )
SetLevel( 90, 300 )
SetCoolTime( MIN(90) )
SetMonster( ID_MIDBOSS, "MI_HERNSIREN01_1", true, 689, 100, 508 )
SetMonster( ID_BOSS, "MI_HERNKRAKEN01_1", true, 1942, 100, 1424 )
--}
AddDungeon( "WI_INSTANCE_SANPRES" )
--{
SetClass( CLASS_NORMAL, CLASS_MASTER, CLASS_HERO, CLASS_LEGEND_HERO )
SetLevel( 105, 300 )
SetCoolTime( MIN(90) )
SetMonster( ID_MIDBOSS, "MI_SHIPHIPPOGRIPH", true, 1961, 101, 253 )
SetMonster( ID_BOSS, "MI_SHIPHARPINEES", true, 1362, 109, 1730 )
--}
AddDungeon( "WI_INSTANCE_SANPRES_1" )
--{
SetClass( CLASS_MASTER, CLASS_HERO, CLASS_LEGEND_HERO)
SetLevel( 105, 300 )
SetCoolTime( MIN(90) )
SetMonster( ID_MIDBOSS, "MI_SHIPHIPPOGRIPH_1", true, 1961, 101, 253 )
SetMonster( ID_BOSS, "MI_SHIPHARPINEES_1", true, 1362, 109, 1730 )
--}
remove it.
|
Thanks -Kaores-, it work!!!
|
|
|
 |
Similar Threads
|
[relase] Dungeon rampage party bomb hack
06/25/2014 - Facebook - 7 Replies
:):):):):)
Scan:
Health Potion -70000
Health Keg -70001
Mana Potion -70002
Mana Keg -70003
Ye Olde Explosive -70004
Move Speed-up -70005
Attack Power-Up -70006
|
[Release] Unlimited Party Dungeon Text
01/20/2012 - Mabinogi Hacks, Bots, Cheats & Exploits - 45 Replies
OP code 8E94
00 T_INT : 1
01 T_STR :
03 T_STR :
04 T_STR :
05 T_INT : 1 - 1 so none can join if u dont wanna lock
06 T_BYTE : 0
build the packet in alissa yourself pretty useless if you can't do so, have fun.
|
[Frage] Dungeon nur mit Party zugänglich!
10/21/2010 - Flyff Private Server - 2 Replies
Heyho,
also ich habe da mal eine Frage:
Wie kann ich das einstellen, das der Zugang zum Behemoth Dungeon nur mit einer Party möglich ist.
Im Beast kann man ja unter Area Settings >Con Party aktiveren, jedoch war ich mir da nicht sicher.
Ich habe dann beim Animus und Verfluchten Animus den trigger angeguckt.
Da ist aber auch kein Hacken bei Con party.
Wird die Partyabfrage noch woanders in den Files definiert?
Wenn ja, wo?
|
Dungeon-party??
09/29/2009 - Dekaron - 7 Replies
So if the bypass is relased, have anyone way to enter dungeon alone??
(i changed it in maplist but not work) any ideas??
|
Dungeon Party
08/02/2009 - User Submitted News - 4 Replies
Hallo Kinder.
Heute ist der Weltweite release von Dungeon party, scheint ein lustiges game zu sein und kein asia grinder :
YouTube - Dungeon Party Trailer #2 (HD) (PC) 1:31 of in-game footage
Dungeon Party Free to play- MMOG
hauste rein mutt**f***** ;)
|
All times are GMT +1. The time now is 11:53.
|
|