ohhh ok m8 i didnt see that before nowsorry
i will do this add
![]()
ohhh ok m8 i didnt see that before nowsorry
i will do this add
![]()
hmm its blocking ...
The Patch is Here xD
Index: configs/arcemu-world.conf
===================================================================
--- configs/arcemu-world.conf (revision 2042)
+++ configs/arcemu-world.conf (working copy)
@@ -774,4 +774,16 @@
#
#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
<GameMaster StartOnGMIsland = "1">
-
+
+#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
+# Arena Settings
+#
+# Allows you to control current season and its progress.
+#
+# Season - has to be higher than 0 for arenas to work.
+# Progress - sets the progress, 0 = finished, 1 = in progress
+#
+#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
+
+<Arena Season = "5"
+ Progress = "1">
\ No newline at end of file
Index: src/arcemu-world/Player.cpp
===================================================================
--- src/arcemu-world/Player.cpp (revision 2042)
+++ src/arcemu-world/Player.cpp (working copy)
@@ -6638,6 +6638,11 @@
m_lastRunSpeed = 0;
UpdateSpeed();
+ WorldPacket ArenaSettings(SMSG_UPDATE_WORLD_STATE, 16);
+ ArenaSettings << uint32(0xC77) << uint32(sWorld.Arena_Season);
+ ArenaSettings << uint32(0xF3D) << uint32(sWorld.Arena_Progress);
+ GetSession()->SendPacket( &ArenaSettings );
+
sLog.outDetail("WORLD: Sent initial logon packets for %s.", GetName());
}
Index: src/arcemu-world/World.cpp
===================================================================
--- src/arcemu-world/World.cpp (revision 2042)
+++ src/arcemu-world/World.cpp (working copy)
@@ -1317,6 +1317,9 @@
antiMasterLootNinja = Config.OptionalConfig.GetBoolDefault("Optional", "AntiMasterLootNinja", false);
realmAllowTBCcharacters = Config.OptionalConfig.GetBoolDefault("Optional", "AllowTBC", true);
+ Arena_Season = Config.MainConfig.GetIntDefault("Arena", "Season", 1);
+ Arena_Progress = Config.MainConfig.GetIntDefault("Arena", "Progress", 1);
+
announce_tag = Config.MainConfig.GetStringDefault("Announce", "Tag", "Staff");
GMAdminTag = Config.MainConfig.GetBoolDefault("Announce", "GMAdminTag", false);
NameinAnnounce = Config.MainConfig.GetBoolDefault("Announce", "NameinAnnounce", true);
Index: src/arcemu-world/World.h
===================================================================
--- src/arcemu-world/World.h (revision 2042)
+++ src/arcemu-world/World.h (working copy)
@@ -463,6 +463,11 @@
bool gamemaster_hidePermissions;
bool gamemaster_startonGMIsland;
+ //Arena Settings
+ int Arena_Season;
+ int Arena_Progress;
+
+
// broadcast system config
bool BCSystemEnable;
int BCInterval;
ok i have the code now , it give errors, but i will make it work in next update of cores after my next x40 release today![]()
hey kez i have a problem . i downloaded the arcemu rev 2246 x40 fun and when i extract it it gives me an error saying the file is corrupt. and when i click the folder arcemu rev 2246 x40 fun ,i go to tools , sql and i see nothing ... so probably the winrar wont extract the x40 world database.
Hi all.
Keazain x40 working perfect thx for this.
Can you tell me how to make heartstone without addons.
Is it anyway I can add this to my repack byt putting it the in my world config and restart the server?
Index: configs/arcemu-world.conf
===================================================================
--- configs/arcemu-world.conf (revision 2042)
+++ configs/arcemu-world.conf (working copy)
@@ -774,4 +774,16 @@
#
#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
<GameMaster StartOnGMIsland = "1">
-
+
+#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
+# Arena Settings
+#
+# Allows you to control current season and its progress.
+#
+# Season - has to be higher than 0 for arenas to work.
+# Progress - sets the progress, 0 = finished, 1 = in progress
+#
+#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
+
+<Arena Season = "5"
+ Progress = "1">
\ No newline at end of file
Index: src/arcemu-world/Player.cpp
===================================================================
--- src/arcemu-world/Player.cpp (revision 2042)
+++ src/arcemu-world/Player.cpp (working copy)
@@ -6638,6 +6638,11 @@
m_lastRunSpeed = 0;
UpdateSpeed();
+ WorldPacket ArenaSettings(SMSG_UPDATE_WORLD_STATE, 16);
+ ArenaSettings << uint32(0xC77) << uint32(sWorld.Arena_Season);
+ ArenaSettings << uint32(0xF3D) << uint32(sWorld.Arena_Progress);
+ GetSession()->SendPacket( &ArenaSettings );
+
sLog.outDetail("WORLD: Sent initial logon packets for %s.", GetName());
}
Index: src/arcemu-world/World.cpp
===================================================================
--- src/arcemu-world/World.cpp (revision 2042)
+++ src/arcemu-world/World.cpp (working copy)
@@ -1317,6 +1317,9 @@
antiMasterLootNinja = Config.OptionalConfig.GetBoolDefault("Optional", "AntiMasterLootNinja", false);
realmAllowTBCcharacters = Config.OptionalConfig.GetBoolDefault("Optional", "AllowTBC", true);
+ Arena_Season = Config.MainConfig.GetIntDefault("Arena", "Season", 1);
+ Arena_Progress = Config.MainConfig.GetIntDefault("Arena", "Progress", 1);
+
announce_tag = Config.MainConfig.GetStringDefault("Announce", "Tag", "Staff");
GMAdminTag = Config.MainConfig.GetBoolDefault("Announce", "GMAdminTag", false);
NameinAnnounce = Config.MainConfig.GetBoolDefault("Announce", "NameinAnnounce", true);
Index: src/arcemu-world/World.h
===================================================================
--- src/arcemu-world/World.h (revision 2042)
+++ src/arcemu-world/World.h (working copy)
@@ -463,6 +463,11 @@
bool gamemaster_hidePermissions;
bool gamemaster_startonGMIsland;
+ //Arena Settings
+ int Arena_Season;
+ int Arena_Progress;
+
+
// broadcast system config
bool BCSystemEnable;
int BCInterval;
Last edited by keeevin92; 02-22-2009 at 08:50 AM.
Working thx m8.
im expect release at 18:00 sorry for delay, i want it perfect this time
here is a quick-shot from mall...
you realy gonna love this server![]()
insainz, please pm your server details again to me and let me know when this is released when you have the server ready to play on![]()
yo kez could you make an update with the 6 zeros or sumthing ???
Superb repack. Im looking forward to the X40 repack, but please dont stress it. Im sure the wait is worth it. Also got a question for you keazain. Would it help if you knew what quest works and what doesnt. If so then I'll gladly help out by testing the quest I can find and report if they work or not. I guess youll need "quest id" but what other information do you need to fix "broken" quests?
+Rep
omg dude mall looks uber xD lol how do u do the map editing ? cuz noggit dont wrk for 3.0.9![]()
Nitram1 --> that would be great if you would do that
BitznBobz --> all works in this packeven skycity etc.