Skip to content

Commit

Permalink
fix, more mods, stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
vendethiel committed Sep 6, 2013
1 parent 742383e commit 56253fd
Show file tree
Hide file tree
Showing 23 changed files with 665 additions and 233 deletions.
66 changes: 49 additions & 17 deletions admin/admin_adr_zones.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,13 @@

$zonelist = $db->sql_fetchrowset($result);

/*
$destination1_list = '<select name="zone_goto1">';
$destination1_list .= '<option value = "" >' . $lang['Adr_zone_acp_choose_destination'] . '</option>';
for ( $i = 0 ; $i < count($zonelist) ; $i ++)
$destination1_list .= '<option value = "' . $zonelist[$i]['zone_name'] . '" >' . $zonelist[$i]['zone_name'] . '</option>';
$destination1_list .= '</select>';
*/

$destination2_list = '<select name="zone_goto2">';
$destination2_list .= '<option value = "" >' . $lang['Adr_zone_acp_choose_destination'] . '</option>';
Expand Down Expand Up @@ -207,6 +209,7 @@
"L_ZONE_BUILDINGS" => $lang['Adr_Zone_acp_buildings'],
"L_ZONE_EVENTS" => $lang['Adr_Zone_acp_events'],
"L_ZONE_CHANCE" => $lang['Adr_Zone_acp_chance'],
"L_ZONE_LEVEL" => $lang['Adr_Zone_acp_level'],
"L_ZONE_CHANCE_EXPLAIN" => $lang['Adr_Zone_acp_chance_explain'],
"L_ZONE_POINTWIN1" => $lang['Adr_Zone_acp_pointwin1'],
"L_ZONE_POINTWIN1_EXPLAIN" => $lang['Adr_Zone_acp_pointwin1_explain'],
Expand Down Expand Up @@ -279,7 +282,7 @@
//BEGIN lists
//

$existing_destination1 = $zones['goto1_name'];
// $existing_destination1 = $zones['goto1_name'];
$existing_destination2 = $zones['goto2_name'];
$existing_destination3 = $zones['goto3_name'];
$existing_destination4 = $zones['goto4_name'];
Expand All @@ -301,34 +304,54 @@

$zonelist = $db->sql_fetchrowset($result);

$destination1_list = '<select name="zone_goto1">';
/* $destination1_list = '<select name="zone_goto1">';
$destination1_list .= '<option value = "' . $existing_destination1 . '" >' . $existing_destination1 . '</option>';
for ( $i = 0 ; $i < count($zonelist) ; $i ++)
{
if ($zonelist[$i]['zone_name'] == $existing_destination1 || $zonelist[$i]['zone_name'] == $zones['zone_name'])
continue;
$destination1_list .= '<option value = "' . $zonelist[$i]['zone_name'] . '" >' . $zonelist[$i]['zone_name'] . '</option>';
}
$destination1_list .= '</select>';

*/
$destination2_list = '<select name="zone_goto2">';
$destination2_list .= '<option value = "' . $existing_destination2 . '" >' . $existing_destination2_name . '</option><option value = "" >' . $lang['Adr_zone_acp_choose_nothing'] . '</option>';
for ( $i = 0 ; $i < count($zonelist) ; $i ++)
{
if ($zonelist[$i]['zone_name'] == $existing_destination2 || $zonelist[$i]['zone_name'] == $zones['zone_name'])
continue;
$destination2_list .= '<option value = "' . $zonelist[$i]['zone_name'] . '" >' . $zonelist[$i]['zone_name'] . '</option>';
}
$destination2_list .= '</select>';

$destination3_list = '<select name="zone_goto3">';
$destination3_list .= '<option value = "' . $existing_destination3 . '" >' . $existing_destination3_name . '</option><option value = "" >' . $lang['Adr_zone_acp_choose_nothing'] . '</option>';
for ( $i = 0 ; $i < count($zonelist) ; $i ++)
{
if ($zonelist[$i]['zone_name'] == $existing_destination3 || $zonelist[$i]['zone_name'] == $zones['zone_name'])
continue;
$destination3_list .= '<option value = "' . $zonelist[$i]['zone_name'] . '" >' . $zonelist[$i]['zone_name'] . '</option>';
}
$destination3_list .= '</select>';

$destination4_list = '<select name="zone_goto4">';
$destination4_list .= '<option value = "' . $existing_destination4 . '" >' . $existing_destination4_name . '</option><option value = "" >' . $lang['Adr_zone_acp_choose_nothing'] . '</option>';
for ( $i = 0 ; $i < count($zonelist) ; $i ++)
{
if ($zonelist[$i]['zone_name'] == $existing_destination4 || $zonelist[$i]['zone_name'] == $zones['zone_name'])
continue;
$destination4_list .= '<option value = "' . $zonelist[$i]['zone_name'] . '" >' . $zonelist[$i]['zone_name'] . '</option>';
}
$destination4_list .= '</select>';

$return_list = '<select name="zone_return">';
$return_list .= '<option value = "' . $existing_return . '" >' . $existing_return_name . '</option><option value = "" >' . $lang['Adr_zone_acp_choose_nothing'] . '</option>';
for ( $i = 0 ; $i < count($zonelist) ; $i ++)
{
if ($zonelist[$i]['zone_name'] == $existing_return_name || $zonelist[$i]['zone_name'] == $zones['zone_name'])
continue;
$return_list .= '<option value = "' . $zonelist[$i]['zone_name'] . '" >' . $zonelist[$i]['zone_name'] . '</option>';
}
$return_list .= '</select>';

//elements list
Expand Down Expand Up @@ -389,6 +412,8 @@
//

$template->assign_vars(array(
"ZONE_LEVEL" => $zones['zone_level'],

"ZONE_NAME" => $zones['zone_name'],
"ZONE_DESC" => $zones['zone_desc'],
"ZONE_IMG" => $zones['zone_img'],
Expand All @@ -400,7 +425,7 @@
"ZONE_DESTINATION3" => $destination3_list,
"ZONE_DESTINATION4" => $destination4_list,
"ZONE_RETURN" => $return_list,
"ZONE_COSTDESTINATION1" => $zones['cost_goto1'],
// "ZONE_COSTDESTINATION1" => $zones['cost_goto1'],
"ZONE_COSTDESTINATION2" => $zones['cost_goto2'],
"ZONE_COSTDESTINATION3" => $zones['cost_goto3'],
"ZONE_COSTDESTINATION4" => $zones['cost_goto4'],
Expand Down Expand Up @@ -479,6 +504,7 @@
"L_ZONE_BUILDINGS" => $lang['Adr_Zone_acp_buildings'],
"L_ZONE_EVENTS" => $lang['Adr_Zone_acp_events'],
"L_ZONE_CHANCE" => $lang['Adr_Zone_acp_chance'],
"L_ZONE_LEVEL" => $lang['Adr_Zone_acp_level'],
"L_ZONE_CHANCE_EXPLAIN" => $lang['Adr_Zone_acp_chance_explain'],
"L_ZONE_POINTWIN1" => $lang['Adr_Zone_acp_pointwin1'],
"L_ZONE_POINTWIN1_EXPLAIN" => $lang['Adr_Zone_acp_pointwin1_explain'],
Expand Down Expand Up @@ -520,12 +546,12 @@
$image = ( isset($HTTP_POST_VARS['zone_img']) ) ? trim($HTTP_POST_VARS['zone_img']) : trim($HTTP_GET_VARS['zone_img']);
$element = ( isset($HTTP_POST_VARS['zone_element']) ) ? trim($HTTP_POST_VARS['zone_element']) : trim($HTTP_GET_VARS['zone_element']);
$item = ( isset($HTTP_POST_VARS['zone_item']) ) ? trim($HTTP_POST_VARS['zone_item']) : trim($HTTP_GET_VARS['zone_item']);
$goto1 = ( isset($HTTP_POST_VARS['zone_goto1']) ) ? trim($HTTP_POST_VARS['zone_goto1']) : trim($HTTP_GET_VARS['zone_goto1']);
// $goto1 = ( isset($HTTP_POST_VARS['zone_goto1']) ) ? trim($HTTP_POST_VARS['zone_goto1']) : trim($HTTP_GET_VARS['zone_goto1']);
$goto2 = ( isset($HTTP_POST_VARS['zone_goto2']) ) ? trim($HTTP_POST_VARS['zone_goto2']) : trim($HTTP_GET_VARS['zone_goto2']);
$goto3 = ( isset($HTTP_POST_VARS['zone_goto3']) ) ? trim($HTTP_POST_VARS['zone_goto3']) : trim($HTTP_GET_VARS['zone_goto3']);
$goto4 = ( isset($HTTP_POST_VARS['zone_goto4']) ) ? trim($HTTP_POST_VARS['zone_goto4']) : trim($HTTP_GET_VARS['zone_goto4']);
$return = ( isset($HTTP_POST_VARS['zone_return']) ) ? trim($HTTP_POST_VARS['zone_return']) : trim($HTTP_GET_VARS['zone_return']);
$cost1 = $HTTP_POST_VARS['zone_cost1'];
// $cost1 = $HTTP_POST_VARS['zone_cost1'];
$cost2 = $HTTP_POST_VARS['zone_cost2'];
$cost3 = $HTTP_POST_VARS['zone_cost3'];
$cost4 = $HTTP_POST_VARS['zone_cost4'];
Expand All @@ -549,7 +575,8 @@
$pointwin2 = $HTTP_POST_VARS['zone_pointwin2'];
$pointloss1 = $HTTP_POST_VARS['zone_pointloss1'];
$pointloss2 = $HTTP_POST_VARS['zone_pointloss2'];
$chance = $HTTP_POST_VARS['zone_chance'];
$chance = intval($HTTP_POST_VARS['zone_chance']);
$level = intval($HTTP_POST_VARS['zone_level']);

$monsters = array();
$monsters = $HTTP_POST_VARS['monsters'];
Expand All @@ -567,21 +594,22 @@
$monsters_list .= ( $monsters_list == '' ) ? $monsters[$a] : ", ".$monsters[$a];
}

if ( $name == '' || $description == '' || $image == '' || $element == '' || $goto1 == '' || $cost1 == '' || $cost2 == '' || $cost3 == '' || $cost4 == '' || $costreturn == '' || $pointwin1 == '' || $pointwin2 == '' || $pointloss1 == '' || $pointloss2 == '' || $chance == '' )
// || $goto1 == '' || $cost1 == ''
if ( $name == '' || $description == '' || $image == '' || $element == '' || $cost2 == '' || $cost3 == '' || $cost4 == '' || $costreturn == '' || $pointwin1 == '' || $pointwin2 == '' || $pointloss1 == '' || $pointloss2 == '' || $chance == '' )
adr_previous( Fields_empty , admin_adr_zones , '' );

// goto1_name = '" . str_replace("\'", "''", $goto1) . "',
// cost_goto1 = '$cost1',
$sql = "UPDATE " . ADR_ZONES_TABLE . "
SET zone_name = '" . str_replace("\'", "''", $name) . "',
zone_desc = '" . str_replace("\'", "''", $description) . "',
zone_img = '" . str_replace("\'", "''", $image) . "',
zone_element = '" . str_replace("\'", "''", $element) . "',
zone_item = '" . str_replace("\'", "''", $item) . "',
cost_goto1 = '$cost1',
cost_goto2 = '$cost2',
cost_goto3 = '$cost3',
cost_goto4 = '$cost4',
cost_return = '$costreturn',
goto1_name = '" . str_replace("\'", "''", $goto1) . "',
goto2_name = '" . str_replace("\'", "''", $goto2) . "',
goto3_name = '" . str_replace("\'", "''", $goto3) . "',
goto4_name = '" . str_replace("\'", "''", $goto4) . "',
Expand All @@ -606,7 +634,8 @@
zone_pointwin2 = '$pointwin2',
zone_pointloss1 = '$pointloss1',
zone_pointloss2 = '$pointloss2',
zone_chance = '$chance'
zone_chance = '$chance',
zone_level = '$level'
WHERE zone_id = '$zone_id'";
if( !($result = $db->sql_query($sql)) )
message_die(GENERAL_ERROR, "Couldn't update zones info", "", __LINE__, __FILE__, $sql);
Expand All @@ -630,12 +659,12 @@
$image = ( isset($HTTP_POST_VARS['zone_img']) ) ? trim($HTTP_POST_VARS['zone_img']) : trim($HTTP_GET_VARS['zone_img']);
$element = ( isset($HTTP_POST_VARS['zone_element']) ) ? trim($HTTP_POST_VARS['zone_element']) : trim($HTTP_GET_VARS['zone_element']);
$item = ( isset($HTTP_POST_VARS['zone_item']) ) ? trim($HTTP_POST_VARS['zone_item']) : trim($HTTP_GET_VARS['zone_item']);
$goto1 = ( isset($HTTP_POST_VARS['zone_goto1']) ) ? trim($HTTP_POST_VARS['zone_goto1']) : trim($HTTP_GET_VARS['zone_goto1']);
// $goto1 = ( isset($HTTP_POST_VARS['zone_goto1']) ) ? trim($HTTP_POST_VARS['zone_goto1']) : trim($HTTP_GET_VARS['zone_goto1']);
$goto2 = ( isset($HTTP_POST_VARS['zone_goto2']) ) ? trim($HTTP_POST_VARS['zone_goto2']) : trim($HTTP_GET_VARS['zone_goto2']);
$goto3 = ( isset($HTTP_POST_VARS['zone_goto3']) ) ? trim($HTTP_POST_VARS['zone_goto3']) : trim($HTTP_GET_VARS['zone_goto3']);
$goto4 = ( isset($HTTP_POST_VARS['zone_goto4']) ) ? trim($HTTP_POST_VARS['zone_goto4']) : trim($HTTP_GET_VARS['zone_goto4']);
$return = ( isset($HTTP_POST_VARS['zone_return']) ) ? trim($HTTP_POST_VARS['zone_return']) : trim($HTTP_GET_VARS['zone_return']);
$cost1 = $HTTP_POST_VARS['zone_cost1'];
// $cost1 = $HTTP_POST_VARS['zone_cost1'];
$cost2 = $HTTP_POST_VARS['zone_cost2'];
$cost3 = $HTTP_POST_VARS['zone_cost3'];
$cost4 = $HTTP_POST_VARS['zone_cost4'];
Expand All @@ -659,7 +688,8 @@
$pointwin2 = $HTTP_POST_VARS['zone_pointwin2'];
$pointloss1 = $HTTP_POST_VARS['zone_pointloss1'];
$pointloss2 = $HTTP_POST_VARS['zone_pointloss2'];
$chance = $HTTP_POST_VARS['zone_chance'];
$chance = intval($HTTP_POST_VARS['zone_chance']);
$level = intval($HTTP_POST_VARS['zone_level']);

$monsters = array();
$monsters = $HTTP_POST_VARS['monsters'];
Expand All @@ -681,8 +711,8 @@
adr_previous( Fields_empty , admin_adr_zones , '' );

$sql = "INSERT INTO " . ADR_ZONES_TABLE . "
( zone_id , zone_name , zone_desc, zone_img , zone_element, zone_item, cost_goto1, cost_goto2, cost_goto3, cost_goto4, cost_return, goto1_name, goto2_name, goto3_name, goto4_name, return_name, zone_shops , zone_forge , zone_prison , zone_temple, zone_bank, zone_event1, zone_event2, zone_event3, zone_event4, zone_event5, zone_event6, zone_event7, zone_event8, zone_pointwin1, zone_pointwin2, zone_pointloss1, zone_pointloss2, zone_chance, zone_mine, zone_enchant, zone_monsters_list )
VALUES ( '$zone_id' ,'" . str_replace("\'", "''", $name) . "','" . str_replace("\'", "''", $description) . "', '" . str_replace("\'", "''", $image) . "' , '" . str_replace("\'", "''", $element) . "', '" . str_replace("\'", "''", $item) . "' , '$cost1' , '$cost2' , '$cost3' , '$cost4' , '$costreturn' , '" . str_replace("\'", "''", $goto1) . "' , '" . str_replace("\'", "''", $goto2) . "' , '" . str_replace("\'", "''", $goto3) . "' , '" . str_replace("\'", "''", $goto4) . "' , '" . str_replace("\'", "''", $return) . "', '$shops' , '$forge' , '$prison' , '$temple' , '$bank' , '$event1' , '$event2' , '$event3' , '$event4' , '$event5' , '$event6' , '$event7' , '$event8' , '$pointwin1' , '$pointwin2' , '$pointloss1' , '$pointloss2' , '$chance' , '$mine' , '$enchant', '" . $monsters_list . "' )";
( zone_id , zone_name , zone_desc, zone_img , zone_element, zone_item, cost_goto2, cost_goto3, cost_goto4, cost_return, goto2_name, goto3_name, goto4_name, return_name, zone_shops , zone_forge , zone_prison , zone_temple, zone_bank, zone_event1, zone_event2, zone_event3, zone_event4, zone_event5, zone_event6, zone_event7, zone_event8, zone_pointwin1, zone_pointwin2, zone_pointloss1, zone_pointloss2, zone_chance, zone_mine, zone_enchant, zone_monsters_list , zone_chance )
VALUES ( '$zone_id' ,'" . str_replace("\'", "''", $name) . "','" . str_replace("\'", "''", $description) . "', '" . str_replace("\'", "''", $image) . "' , '" . str_replace("\'", "''", $element) . "', '" . str_replace("\'", "''", $item) . "' , '$cost2' , '$cost3' , '$cost4' , '$costreturn' , '" . str_replace("\'", "''", $goto2) . "' , '" . str_replace("\'", "''", $goto3) . "' , '" . str_replace("\'", "''", $goto4) . "' , '" . str_replace("\'", "''", $return) . "', '$shops' , '$forge' , '$prison' , '$temple' , '$bank' , '$event1' , '$event2' , '$event3' , '$event4' , '$event5' , '$event6' , '$event7' , '$event8' , '$pointwin1' , '$pointwin2' , '$pointloss1' , '$pointloss2' , '$chance' , '$mine' , '$enchant', '" . $monsters_list . "' , '$level' )";
$result = $db->sql_query($sql);
if( !$result )
message_die(GENERAL_ERROR, "Couldn't insert new zones", "", __LINE__, __FILE__, $sql);
Expand Down Expand Up @@ -723,8 +753,9 @@
"ROW_CLASS" => $row_class,
"NAME" => $zones[$i]['zone_name'],
"ELEMENT" => $zones[$i]['zone_element'],
"LEVEL" => $zones[$i]['zone_level'],
"ITEM" => $required_item,
"DESTINATION1" => $zones[$i]['goto1_name'] ,
// "DESTINATION1" => $zones[$i]['goto1_name'] ,
"DESTINATION2" => $zone2_value,
"DESTINATION3" => $zone3_value,
"DESTINATION4" => $zone4_value,
Expand All @@ -735,6 +766,7 @@
}

$template->assign_vars(array(
"L_ZONE_LEVEL" => $lang['Adr_Zone_acp_level'],
"L_ZONE_TITLE" => $lang['Adr_Zone_acp_title'],
"L_ZONE_EXPLAIN" => $lang['Adr_Zone_acp_title_explain'],
"L_ZONE_NAME" => $lang['Adr_Zone_acp_name'],
Expand Down
72 changes: 22 additions & 50 deletions admin/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,30 +44,6 @@ function inarray($needle, $haystack)
}
return false;
}
// +Reorder ACP Categories
function number_first_sort($s, $t)
{
$s = preg_replace('/Admin_cat_/', '', $s);
$t = preg_replace('/Admin_cat_/', '', $t);

if (is_numeric($s) && is_numeric($t))
{
return $t - $s;
}
elseif (is_numeric($s) && !is_numeric($t))
{
return -1;
}
elseif (is_numeric($t) && !is_numeric($s))
{
return 1;
}
else
{
return strcmp($s, $t);
}
}
// -Reorder ACP Categories
//
// End functions
// -------------
Expand All @@ -79,7 +55,7 @@ function number_first_sort($s, $t)
{
$dir = @opendir(".");

$setmodules = 1;
$setmodules = true;
while( $file = @readdir($dir) )
{
if( preg_match("/^admin_.*?\." . $phpEx . "$/", $file) )
Expand All @@ -98,6 +74,14 @@ function number_first_sort($s, $t)
"body" => "admin/index_navigate.tpl")
);

$mode = request_var('mode', '');
$mode_cookie = $board_config['cookie_name'] . '_acp_mode';
if ($mode != 'rpg' && $mode != 'forum')
{
$mode = isset($_COOKIE[$mode_cookie]) ? $_COOKIE[$mode_cookie] : 'forum';
}
setcookie($mode_cookie, $mode, time() + 31536000, $board_config['cookie_path'], $board_config['cookie_domain'], $board_config['cookie_secure']);

$template->assign_vars(array(
"U_FORUM_INDEX" => append_sid("../index.$phpEx"),
"U_ADMIN_INDEX" => append_sid("index.$phpEx?pane=right"),
Expand All @@ -117,32 +101,14 @@ function number_first_sort($s, $t)
"L_PREVIEW_FORUM" => $lang['Preview_forum'])
);

// +Reorder ACP Categories
$sql = "SELECT cat_order, cat_display, cat_identifier
FROM " . ADMIN_CATS_TABLE;

if (!$result = $db->sql_query($sql))
{
message_die(GENERAL_ERROR, "Couldn't obtain admin category information.", "", __LINE__, __FILE__, $sql);
}

while ($row = $db->sql_fetchrow($result))
{
if (!isset($module[$row['cat_identifier']]))
{
continue;
}
// V: RPG & Forum ACP split
$template->assign_vars(array(
'MODE' => $mode,
'U_ADMIN_RPG' => append_sid("index.php?pane=left&mode=rpg"),
'U_ADMIN_FORUM' => append_sid("index.php?pane=left&mode=forum"),
));
// END : RPG & Forum ACP split

$uid = "Admin_cat_{$row['cat_order']}";
$lang[$uid] = (!empty($row['cat_display'])) ? $row['cat_display']
: (isset($lang[$row['cat_identifier']]) ? $lang[$row['cat_identifier']]
: preg_replace('/_/', ' ', $row['cat_identifier']));
$module[$uid] = $module[$row['cat_identifier']];
unset($module[$row['cat_identifier']]);
}

uksort($module, "number_first_sort");
// -Reorder ACP Categories
//+MOD: DHTML Menu for ACP
$menu_cat_id = 0;
//-MOD: DHTML Menu for ACP
Expand All @@ -151,6 +117,12 @@ function number_first_sort($s, $t)
{
$cat = ( !empty($lang[$cat]) ) ? $lang[$cat] : preg_replace("/_/", " ", $cat);

$is_rpg = false !== stripos($cat, 'ADR') || false !== stripos($cat, 'Rabbitoshi');
if ($is_rpg && $mode != 'rpg'
|| !$is_rpg && $mode == 'rpg')
continue;
$cat = str_replace('ADR-', '', $cat);

$template->assign_block_vars("catrow", array(
//+MOD: DHTML Menu for ACP
'MENU_CAT_ID' => $menu_cat_id,
Expand Down
22 changes: 14 additions & 8 deletions admin/templates/admin/index_navigate.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -184,15 +184,21 @@ window.onload = doOnLoadMenuACP;
<tr>
<td class="row1"><span class="genmed"><a href="{U_FORUM_INDEX}" target="main" class="genmed">{L_PREVIEW_FORUM}</a></span></td>
</tr>
<!-- +Reorder ACP Categories -->
<tr>
<td class="row1">
<span class="genmed">
<a href="{U_REORDER_CATS}" target="main" class="genmed">{L_REORDER_CATS}</a>
</span>
</td>
<!-- IF MODE == 'rpg' -->
<tr>
<td class="row2"><span class="genmed"><a href="{U_ADMIN_FORUM}" class="genmed">Admin Forum</a></span></td>
</tr>
<tr>
<td class="row2"><span class="genmed">RPG :</span></td>
</tr>
<!-- ELSE -->
<tr>
<td class="row2"><span class="genmed"><a href="{U_ADMIN_RPG}" class="genmed">Admin RPG</a></span></td>
</tr>
<tr>
<td class="row2"><span class="genmed">Forum :</span></td>
</tr>
<!-- -Reorder ACP Categories -->
<!-- ENDIF -->
<!-- BEGIN catrow -->
<tr>
<td height="28" class="catSides" style="cursor:pointer;cursor:hand;" onclick="onMenuCatClick('{catrow.MENU_CAT_ID}');"><span class="cattitle">{catrow.ADMIN_CATEGORY}</span></td>
Expand Down
2 changes: 1 addition & 1 deletion adr/cache/cache_config.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
$adr_config = array(
'Adr_allow_retire_character' => '1',
'Adr_cache_interval' => '60',
'Adr_cache_last_updated' => '1378415822',
'Adr_cache_last_updated' => '1378480549',
'Adr_character_battle_limit' => '30',
'Adr_character_event_limit' => '40',
'Adr_character_limit_enable' => '0',
Expand Down
Binary file removed adr/images/TownMap/Carte1/Thumbs.db
Binary file not shown.
Loading

0 comments on commit 56253fd

Please sign in to comment.