Napster Posted September 18, 2014 Group: Members Topic Count: 11 Topics Per Day: 0.00 Content Count: 196 Reputation: 72 Joined: 12/12/11 Last Seen: November 6, 2016 Share Posted September 18, 2014 (edited) [sRC] Cell PvP 1.7 Last update : 18/07/2014 Support : rAthena SVN revision 12425 Feature : Create cell for player vs player with out mapflag pvp How to use this ?You can enable or disable this featureconf/battle/misc.conf // Addon Cell PVP [Napster] // Enable Deathmatch for cell pvp // Default: 0 // 0 = No // 1 = Yes cellpvp_deathmatch: 1 // Delay player alive deathmatch for cell pvp // Default: 1000 (1 secand) cellpvp_deathmatch_delay: 1000 // When player is dead recovery HP/SP Rate for cell pvp // Default: 100 (recovery 100%) deathmatch_hp_rate: 100 deathmatch_sp_rate: 100 // Enable buff when player is dead for cell pvp // Default: 1 // 0 = No // 1 = Yes // Request core npc files use name "deathmatch_core" cellpvp_autobuff: yes // Can atk player in party // Default: 1 // 0 = No // 1 = Yes cellpvp_party_enable: no // Can atk player in guild // Default: 1 // 0 = No // 1 = Yes cellpvp_guild_enable: no // When player move to cell pvp is delay walk out cooldown // Default: 5000 (5 secand) cellpvp_walkout_delay: 5000 how to create cell pvp - script test_cellpvp -1,{ end; OnInit: setcell "new_1-1",45,109,53,102,cell_pvp, 1; end; } How to use auto buff scriptAdd npc script don't edit npc name "deathmatch_core" function script F_Autobuff { sc_start SC_BLESSING, 60000, 10; sc_start SC_INCREASEAGI, 60000, 10; return; } - script deathmatch_core -1,{ callfunc("F_Autobuff"); end; } Change log Cell PvP 1.7 1. Fix & Cleanup some code2. Fix timer info when walkout cell pvp3. support rAthena SVN revision 12425+ enjoy! Extended_Cell_PvP_1.7.patch Edited September 19, 2014 by Napster 4 Quote Link to comment Share on other sites More sharing options...
Darkpurple Posted September 18, 2014 Group: Members Topic Count: 9 Topics Per Day: 0.00 Content Count: 187 Reputation: 7 Joined: 09/04/12 Last Seen: May 9, 2022 Share Posted September 18, 2014 Great man. You are very efficiency. Quote Link to comment Share on other sites More sharing options...
joelolopez Posted September 19, 2014 Group: Members Topic Count: 154 Topics Per Day: 0.03 Content Count: 493 Reputation: 46 Joined: 01/24/12 Last Seen: August 25, 2022 Share Posted September 19, 2014 [sRC] Cell PvP 1.7 Last update : 18/07/2014 Support : rAthena SVN revision 12425 Feature : Create cell for player vs player with out mapflag pvp How to use this ? You can enable or disable this feature conf/battle/misc.conf // Addon Cell PVP [Napster] // Enable Deathmatch for cell pvp // Default: 0 // 0 = No // 1 = Yes cellpvp_deathmatch: 1 // Delay player alive deathmatch for cell pvp // Default: 1000 (1 secand) cellpvp_deathmatch_delay: 1000 // When player is dead recovery HP/SP Rate for cell pvp // Default: 100 (recovery 100%) deathmatch_hp_rate: 100 deathmatch_sp_rate: 100 // Enable buff when player is dead for cell pvp // Default: 1 // 0 = No // 1 = Yes // Request core npc files use name "deathmatch_core" cellpvp_autobuff: yes // Can atk player in party // Default: 1 // 0 = No // 1 = Yes cellpvp_party_enable: no // Can atk player in guild // Default: 1 // 0 = No // 1 = Yes cellpvp_guild_enable: no // When player move to cell pvp is delay walk out cooldown // Default: 5000 (5 secand) cellpvp_walkout_delay: 5000 how to create cell pvp - script test_cellpvp -1,{ end; OnInit: setcell "new_1-1",45,109,53,102,cell_pvp, 1; end; } How to use auto buff script Add npc script don't edit npc name "deathmatch_core" function script F_Autobuff { sc_start SC_BLESSING, 60000, 10; sc_start SC_INCAGI, 60000, 10; return; } - script deathmatch_core -1,{ callfunc("F_Autobuff"); end; } Change log Cell PvP 1.7 1. Fix & Cleanup some code 2. Fix timer info when walkout cell pvp 3. support rAthena SVN revision 12425+ enjoy! im just wondering how to apply this .patch file? i already downloaded lots of .patch files but i didnt know how to apply it.. Quote Link to comment Share on other sites More sharing options...
Lelouch vi Britannia Posted September 19, 2014 Group: Members Topic Count: 45 Topics Per Day: 0.01 Content Count: 715 Reputation: 84 Joined: 01/05/12 Last Seen: April 10, 2023 Share Posted September 19, 2014 [sRC] Cell PvP 1.7 Last update : 18/07/2014 Support : rAthena SVN revision 12425 Feature : Create cell for player vs player with out mapflag pvp How to use this ?You can enable or disable this featureconf/battle/misc.conf // Addon Cell PVP [Napster] // Enable Deathmatch for cell pvp // Default: 0 // 0 = No // 1 = Yes cellpvp_deathmatch: 1 // Delay player alive deathmatch for cell pvp // Default: 1000 (1 secand) cellpvp_deathmatch_delay: 1000 // When player is dead recovery HP/SP Rate for cell pvp // Default: 100 (recovery 100%) deathmatch_hp_rate: 100 deathmatch_sp_rate: 100 // Enable buff when player is dead for cell pvp // Default: 1 // 0 = No // 1 = Yes // Request core npc files use name "deathmatch_core" cellpvp_autobuff: yes // Can atk player in party // Default: 1 // 0 = No // 1 = Yes cellpvp_party_enable: no // Can atk player in guild // Default: 1 // 0 = No // 1 = Yes cellpvp_guild_enable: no // When player move to cell pvp is delay walk out cooldown // Default: 5000 (5 secand) cellpvp_walkout_delay: 5000 how to create cell pvp - script test_cellpvp -1,{ end; OnInit: setcell "new_1-1",45,109,53,102,cell_pvp, 1; end; } How to use auto buff scriptAdd npc script don't edit npc name "deathmatch_core" function script F_Autobuff { sc_start SC_BLESSING, 60000, 10; sc_start SC_INCAGI, 60000, 10; return; } - script deathmatch_core -1,{ callfunc("F_Autobuff"); end; } Change log Cell PvP 1.7 1. Fix & Cleanup some code2. Fix timer info when walkout cell pvp3. support rAthena SVN revision 12425+ enjoy! im just wondering how to apply this .patch file? i already downloaded lots of .patch files but i didnt know how to apply it.. You add it manually if you like Quote Link to comment Share on other sites More sharing options...
joelolopez Posted September 19, 2014 Group: Members Topic Count: 154 Topics Per Day: 0.03 Content Count: 493 Reputation: 46 Joined: 01/24/12 Last Seen: August 25, 2022 Share Posted September 19, 2014 [sRC] Cell PvP 1.7 Last update : 18/07/2014 Support : rAthena SVN revision 12425 Feature : Create cell for player vs player with out mapflag pvp How to use this ? You can enable or disable this feature conf/battle/misc.conf // Addon Cell PVP [Napster] // Enable Deathmatch for cell pvp // Default: 0 // 0 = No // 1 = Yes cellpvp_deathmatch: 1 // Delay player alive deathmatch for cell pvp // Default: 1000 (1 secand) cellpvp_deathmatch_delay: 1000 // When player is dead recovery HP/SP Rate for cell pvp // Default: 100 (recovery 100%) deathmatch_hp_rate: 100 deathmatch_sp_rate: 100 // Enable buff when player is dead for cell pvp // Default: 1 // 0 = No // 1 = Yes // Request core npc files use name "deathmatch_core" cellpvp_autobuff: yes // Can atk player in party // Default: 1 // 0 = No // 1 = Yes cellpvp_party_enable: no // Can atk player in guild // Default: 1 // 0 = No // 1 = Yes cellpvp_guild_enable: no // When player move to cell pvp is delay walk out cooldown // Default: 5000 (5 secand) cellpvp_walkout_delay: 5000 how to create cell pvp - script test_cellpvp -1,{ end; OnInit: setcell "new_1-1",45,109,53,102,cell_pvp, 1; end; } How to use auto buff script Add npc script don't edit npc name "deathmatch_core" function script F_Autobuff { sc_start SC_BLESSING, 60000, 10; sc_start SC_INCAGI, 60000, 10; return; } - script deathmatch_core -1,{ callfunc("F_Autobuff"); end; } Change log Cell PvP 1.7 1. Fix & Cleanup some code 2. Fix timer info when walkout cell pvp 3. support rAthena SVN revision 12425+ enjoy! im just wondering how to apply this .patch file? i already downloaded lots of .patch files but i didnt know how to apply it.. You add it manually if you like thanks for your help :3 but i already know how to apply it :3 Quote Link to comment Share on other sites More sharing options...
Darkpurple Posted September 19, 2014 Group: Members Topic Count: 9 Topics Per Day: 0.00 Content Count: 187 Reputation: 7 Joined: 09/04/12 Last Seen: May 9, 2022 Share Posted September 19, 2014 (edited) I a found serious bug, when player dead in cell_pvp, they will be stone status and cannot move long time. But My delay time is using default same as diff file. I also found that When the buff end, it can moved !!!!! And other question.... +++ db/const.txt (working copy) @@ -384,6 +384,7 @@ cell_nochat 7 cell_maelstrom 8 cell_icewall 9 +cell_pvp 10 // Addon Cell PVP [Napster] //cell_gettype 0 cell_chkwall 1 @@ -401,6 +402,7 @@ cell_chknochat 13 cell_chkmaelstrom 14 cell_chkicewall 15 +cell_chkpvp 16 // Addon Cell PVP [Napster] Can I change the number which I wanted? like: +cell_pvp 15 // Addon Cell PVP [Napster] +cell_chkpvp 20// Addon Cell PVP [Napster] ?? Edited September 19, 2014 by Darkpurple Quote Link to comment Share on other sites More sharing options...
Napster Posted September 19, 2014 Group: Members Topic Count: 11 Topics Per Day: 0.00 Content Count: 196 Reputation: 72 Joined: 12/12/11 Last Seen: November 6, 2016 Author Share Posted September 19, 2014 (edited) +++ db/const.txt (working copy) @@ -384,6 +384,7 @@ cell_nochat 7 cell_maelstrom 8 cell_icewall 9 +cell_pvp 10 // Addon Cell PVP [Napster] //cell_gettype 0 cell_chkwall 1 @@ -401,6 +402,7 @@ cell_chknochat 13 cell_chkmaelstrom 14 cell_chkicewall 15 +cell_chkpvp 16 // Addon Cell PVP [Napster] Can I change the number which I wanted? like: +cell_pvp 15 // Addon Cell PVP [Napster] +cell_chkpvp 20// Addon Cell PVP [Napster] ?? no you can't change to want but.. if you really want to change open map.h edit to CELL_ICEWALL, CELL_PVP = 15, // Addon Cell PVP [Napster] CELL_CHKICEWALL, // Whether the cell has Ice Wall CELL_CHKPVP = 20, // Whether the cell has PVP [Napster] Edited September 19, 2014 by Napster Quote Link to comment Share on other sites More sharing options...
Lelouch vi Britannia Posted September 19, 2014 Group: Members Topic Count: 45 Topics Per Day: 0.01 Content Count: 715 Reputation: 84 Joined: 01/05/12 Last Seen: April 10, 2023 Share Posted September 19, 2014 @NapsterI tryed this on my test server but when compiling an error msg shows up... 1>d:\test server\rathena\src\map\map.c(2791): error C2065: 'CELL_PVP' : undeclared identifier 1>d:\test server\rathena\src\map\map.c(2791): error C2051: case expression not constant Quote Link to comment Share on other sites More sharing options...
Darkpurple Posted September 19, 2014 Group: Members Topic Count: 9 Topics Per Day: 0.00 Content Count: 187 Reputation: 7 Joined: 09/04/12 Last Seen: May 9, 2022 Share Posted September 19, 2014 (edited) +++ db/const.txt (working copy) @@ -384,6 +384,7 @@ cell_nochat 7 cell_maelstrom 8 cell_icewall 9 +cell_pvp 10 // Addon Cell PVP [Napster] //cell_gettype 0 cell_chkwall 1 @@ -401,6 +402,7 @@ cell_chknochat 13 cell_chkmaelstrom 14 cell_chkicewall 15 +cell_chkpvp 16 // Addon Cell PVP [Napster] Can I change the number which I wanted? like: +cell_pvp 15 // Addon Cell PVP [Napster] +cell_chkpvp 20// Addon Cell PVP [Napster] ?? no you can't change to want but..if you really want to change open map.h edit to CELL_ICEWALL, CELL_PVP = 15, // Addon Cell PVP [Napster] CELL_CHKICEWALL, // Whether the cell has Ice Wall CELL_CHKPVP = 20, // Whether the cell has PVP [Napster] I found a serious bug, when player dead in cell_pvp, they will be stone status and cannot move. But My delay time is using default same as diff file. I also found that When the buff end, it can moved !!!!! Edited September 19, 2014 by Darkpurple Quote Link to comment Share on other sites More sharing options...
Napster Posted September 19, 2014 Group: Members Topic Count: 11 Topics Per Day: 0.00 Content Count: 196 Reputation: 72 Joined: 12/12/11 Last Seen: November 6, 2016 Author Share Posted September 19, 2014 +++ db/const.txt (working copy) @@ -384,6 +384,7 @@ cell_nochat 7 cell_maelstrom 8 cell_icewall 9 +cell_pvp 10 // Addon Cell PVP [Napster] //cell_gettype 0 cell_chkwall 1 @@ -401,6 +402,7 @@ cell_chknochat 13 cell_chkmaelstrom 14 cell_chkicewall 15 +cell_chkpvp 16 // Addon Cell PVP [Napster] Can I change the number which I wanted? like: +cell_pvp 15 // Addon Cell PVP [Napster] +cell_chkpvp 20// Addon Cell PVP [Napster] ?? no you can't change to want but.. if you really want to change open map.h edit to CELL_ICEWALL, CELL_PVP = 15, // Addon Cell PVP [Napster] CELL_CHKICEWALL, // Whether the cell has Ice Wall CELL_CHKPVP = 20, // Whether the cell has PVP [Napster] I found a serious bug, when player dead in cell_pvp, they will be stone status and cannot move. But My delay time is using default same as diff file. I also found that When the buff end, it can moved !!!!! you enable auto buff ? i think this wrong function script F_Autobuff { sc_start SC_BLESSING, 60000, 10; sc_start SC_INCAGI, 60000, 10; <-- change to SC_INCREASEAGI return; } @Napster I tryed this on my test server but when compiling an error msg shows up... 1>d:\test server\rathena\src\map\map.c(2791): error C2065: 'CELL_PVP' : undeclared identifier 1>d:\test server\rathena\src\map\map.c(2791): error C2051: case expression not constant you manual diff or apply patch maybe you mod src fail please check again and use last Server svn Quote Link to comment Share on other sites More sharing options...
Darkpurple Posted September 19, 2014 Group: Members Topic Count: 9 Topics Per Day: 0.00 Content Count: 187 Reputation: 7 Joined: 09/04/12 Last Seen: May 9, 2022 Share Posted September 19, 2014 function script F_Autobuff { sc_start SC_BLESSING, 60000, 10; sc_start SC_INCAGI, 60000, 10; <-- change to SC_INCREASEAGI return; } Yup....the old link from hercules's script is using sc_start SC_INCAGI ... Thanks you for your help. Quote Link to comment Share on other sites More sharing options...
Lelouch vi Britannia Posted September 19, 2014 Group: Members Topic Count: 45 Topics Per Day: 0.01 Content Count: 715 Reputation: 84 Joined: 01/05/12 Last Seen: April 10, 2023 Share Posted September 19, 2014 (edited) @Napster I tryed this on my test server but when compiling an error msg shows up... 1>d:\test server\rathena\src\map\map.c(2791): error C2065: 'CELL_PVP' : undeclared identifier 1>d:\test server\rathena\src\map\map.c(2791): error C2051: case expression not constant you manual diff or apply patch maybe you mod src fail please check again and use last Server svn Ok its done thanks, i just forgot to add this on map.h... CELL_NOCHAT, CELL_MAELSTROM, CELL_ICEWALL, + CELL_PVP, // Addon Cell PVP [Napster] Note: I notice something when you enter the cell it shows 1/999 in the lower left, is it normal? Edited September 19, 2014 by Lelouch vi Britannia Quote Link to comment Share on other sites More sharing options...
zzzfamkungzzz Posted September 19, 2014 Group: Members Topic Count: 0 Topics Per Day: 0 Content Count: 2 Reputation: 1 Joined: 07/10/14 Last Seen: March 12, 2015 Share Posted September 19, 2014 how to support rev 12361 ? Quote Link to comment Share on other sites More sharing options...
Vanquiser Posted September 19, 2014 Group: Members Topic Count: 25 Topics Per Day: 0.01 Content Count: 81 Reputation: 1 Joined: 02/22/12 Last Seen: August 30, 2022 Share Posted September 19, 2014 [sRC] Cell PvP 1.7 Last update : 18/07/2014 Support : rAthena SVN revision 12425 Feature : Create cell for player vs player with out mapflag pvp How to use this ? You can enable or disable this feature conf/battle/misc.conf // Addon Cell PVP [Napster] // Enable Deathmatch for cell pvp // Default: 0 // 0 = No // 1 = Yes cellpvp_deathmatch: 1 // Delay player alive deathmatch for cell pvp // Default: 1000 (1 secand) cellpvp_deathmatch_delay: 1000 // When player is dead recovery HP/SP Rate for cell pvp // Default: 100 (recovery 100%) deathmatch_hp_rate: 100 deathmatch_sp_rate: 100 // Enable buff when player is dead for cell pvp // Default: 1 // 0 = No // 1 = Yes // Request core npc files use name "deathmatch_core" cellpvp_autobuff: yes // Can atk player in party // Default: 1 // 0 = No // 1 = Yes cellpvp_party_enable: no // Can atk player in guild // Default: 1 // 0 = No // 1 = Yes cellpvp_guild_enable: no // When player move to cell pvp is delay walk out cooldown // Default: 5000 (5 secand) cellpvp_walkout_delay: 5000 how to create cell pvp - script test_cellpvp -1,{ end; OnInit: setcell "new_1-1",45,109,53,102,cell_pvp, 1; end; } How to use auto buff script Add npc script don't edit npc name "deathmatch_core" function script F_Autobuff { sc_start SC_BLESSING, 60000, 10; sc_start SC_INCREASEAGI, 60000, 10; return; } - script deathmatch_core -1,{ callfunc("F_Autobuff"); end; } Change log Cell PvP 1.7 1. Fix & Cleanup some code 2. Fix timer info when walkout cell pvp 3. support rAthena SVN revision 12425+ enjoy! Thx man .. Finally.. i can add this feature to my Server Quote Link to comment Share on other sites More sharing options...
Napster Posted September 19, 2014 Group: Members Topic Count: 11 Topics Per Day: 0.00 Content Count: 196 Reputation: 72 Joined: 12/12/11 Last Seen: November 6, 2016 Author Share Posted September 19, 2014 (edited) @Napster I tryed this on my test server but when compiling an error msg shows up... 1>d:\test server\rathena\src\map\map.c(2791): error C2065: 'CELL_PVP' : undeclared identifier 1>d:\test server\rathena\src\map\map.c(2791): error C2051: case expression not constant you manual diff or apply patch maybe you mod src fail please check again and use last Server svn Ok its done thanks, i just forgot to add this on map.h... CELL_NOCHAT, CELL_MAELSTROM, CELL_ICEWALL, + CELL_PVP, // Addon Cell PVP [Napster] Note: I notice something when you enter the cell it shows 1/999 in the lower left, is it normal? maybe it bug, bcz gm account when use @hiding on/off cell pvp not count user, i'am not sure how to reproduce this ? Edited September 19, 2014 by Napster Quote Link to comment Share on other sites More sharing options...
Darkpurple Posted September 19, 2014 Group: Members Topic Count: 9 Topics Per Day: 0.00 Content Count: 187 Reputation: 7 Joined: 09/04/12 Last Seen: May 9, 2022 Share Posted September 19, 2014 http://hercules.ws/board/topic/4593-getmemberaid-checkmes/ Napster, can you transfer this patch to rathena method ?...Thanks... Quote Link to comment Share on other sites More sharing options...
Napster Posted September 19, 2014 Group: Members Topic Count: 11 Topics Per Day: 0.00 Content Count: 196 Reputation: 72 Joined: 12/12/11 Last Seen: November 6, 2016 Author Share Posted September 19, 2014 http://hercules.ws/board/topic/4593-getmemberaid-checkmes/ Napster, can you transfer this patch to rathena method ?...Thanks... but no have test for this getmemberaid_r12425.patch Quote Link to comment Share on other sites More sharing options...
Darkpurple Posted September 19, 2014 Group: Members Topic Count: 9 Topics Per Day: 0.00 Content Count: 187 Reputation: 7 Joined: 09/04/12 Last Seen: May 9, 2022 Share Posted September 19, 2014 http://hercules.ws/board/topic/4593-getmemberaid-checkmes/ Napster, can you transfer this patch to rathena method ?...Thanks... but no have test for this Love you so much much much Test now~!! http://hercules.ws/board/topic/4593-getmemberaid-checkmes/ Napster, can you transfer this patch to rathena method ?...Thanks... but no have test for this I testing with this script it showed the error same as here: http://hercules.ws/board/topic/4746-scuffle-event-21/?p=42857 [Warning]: script:getelementofarray: index out of range (999) [Debug]: Data: variable name='.@i' index=0 [Debug]: Source (NPC): asdf at prontera (162,180) so that ... doesn't work for rathena ? Quote Link to comment Share on other sites More sharing options...
Napster Posted September 19, 2014 Group: Members Topic Count: 11 Topics Per Day: 0.00 Content Count: 196 Reputation: 72 Joined: 12/12/11 Last Seen: November 6, 2016 Author Share Posted September 19, 2014 @Darkpurpleyou can post your script npc to use this Quote Link to comment Share on other sites More sharing options...
Darkpurple Posted September 19, 2014 Group: Members Topic Count: 9 Topics Per Day: 0.00 Content Count: 187 Reputation: 7 Joined: 09/04/12 Last Seen: May 9, 2022 Share Posted September 19, 2014 @Darkpurple you can post your script npc to use this I followed Annieruru steps in here: http://hercules.ws/board/topic/4746-scuffle-event-21/?p=42857 unfortunately ... rathena doesn't support getmemberaid because rathena still haven't break the 128 array limit I just tried this in rAthena prontera,162,180,5 script asdf 100,{ .@i[999] = 1; dispbottom .@i[999] +"";} [Warning]: script:getelementofarray: index out of range (999)[Debug]: Data: variable name='.@i' index=0 [Debug]: Source (NPC): asdf at prontera (162,180) Quote Link to comment Share on other sites More sharing options...
Napster Posted September 19, 2014 Group: Members Topic Count: 11 Topics Per Day: 0.00 Content Count: 196 Reputation: 72 Joined: 12/12/11 Last Seen: November 6, 2016 Author Share Posted September 19, 2014 patch this but i'am not sure won work max_scriptarray.patch Quote Link to comment Share on other sites More sharing options...
Darkpurple Posted September 19, 2014 Group: Members Topic Count: 9 Topics Per Day: 0.00 Content Count: 187 Reputation: 7 Joined: 09/04/12 Last Seen: May 9, 2022 Share Posted September 19, 2014 patch this but i'am not sure won work Do you know that why max_scriptarray will affect getmemberaid ??? Does it because it not changed the array limit of 128.....the getmeberaid only can get 128 limited online people?? Quote Link to comment Share on other sites More sharing options...
Napster Posted September 19, 2014 Group: Members Topic Count: 11 Topics Per Day: 0.00 Content Count: 196 Reputation: 72 Joined: 12/12/11 Last Seen: November 6, 2016 Author Share Posted September 19, 2014 yes i know it work affect getmemberaid bcz mapreg server use for this put variable, but use Memory server increase Quote Link to comment Share on other sites More sharing options...
Darkpurple Posted September 19, 2014 Group: Members Topic Count: 9 Topics Per Day: 0.00 Content Count: 187 Reputation: 7 Joined: 09/04/12 Last Seen: May 9, 2022 Share Posted September 19, 2014 yes i know it work affect getmemberaid bcz mapreg server use for this put variable, but use Memory server increase max_scriptarray.patch I found the bug : the mapserver success to compiled, but the client cannot login to the mapserver. Quote Link to comment Share on other sites More sharing options...
Napster Posted September 19, 2014 Group: Members Topic Count: 11 Topics Per Day: 0.00 Content Count: 196 Reputation: 72 Joined: 12/12/11 Last Seen: November 6, 2016 Author Share Posted September 19, 2014 oh yes map server can't load Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.