Jump to content

Famous

Members
  • Posts

    455
  • Joined

  • Last visited

Everything posted by Famous

  1. 405,0,0,0,30000,8000,0 <-- I'm using this what should be correct?
  2. thnx for reply I will try this as soon as posible.. I already tried yea I can use in the ground but the enemy can easily bypass by just walking
  3. I got error pc.c:69: error: âEQP_COSTUME_GARMENTâ undeclared here (not in a function) pc.c:69: warning: excess elements in array initializer pc.c:69: warning: (near initialization for âequip_posâ) +static unsigned short equip_pos[EQI_MAX]={EQP_ACC_L,EQP_ACC_R,EQP_SHOES,EQP_GARMENT,EQP_HEAD_LOW,EQP_HEAD_MID,EQP_HEAD_TOP,EQP_ARMOR,EQP_HAND_L,EQP_HAND_R,EQP_AMMO,EQP_COSTUME_HEAD_TOP,EQP_COSTUME_HEAD_MID,EQP_COSTUME_HEAD_LOW,EQP_COSTUME_GARMENT};
  4. Similar to this topic http://rathena.org/board/topic/53901-how-to-make-spider-web-works-like-ankle-snare-and-soul-link-that-adds-max-hp/#entry197698
  5. skill.c: In function âskill_unit_onplace_timerâ: skill.c:11381: warning: initialization discards qualifiers from pointer target type skill.c:11962: error: invalid storage class for function âskill_unit_onleftâ skill.c:12082: error: invalid storage class for function âskill_unit_effectâ skill.c:12156: error: invalid storage class for function âskill_check_condition_char_subâ skill.c:12305: error: invalid storage class for function âskill_check_condition_mob_master_subâ skill.c:13908: error: invalid storage class for function âskill_brandishspear_firstâ skill.c:14011: error: invalid storage class for function âskill_brandishspear_dirâ skill.c:14267: error: invalid storage class for function âskill_sit_countâ skill.c:14285: error: invalid storage class for function âskill_sit_inâ skill.c:14308: error: invalid storage class for function âskill_sit_outâ skill.c:14397: error: invalid storage class for function âskill_unitsetmapcellâ skill.c:14597: error: invalid storage class for function âskill_cell_overlapâ skill.c:14723: error: invalid storage class for function âskill_trap_splashâ skill.c:15030: error: invalid storage class for function âskill_get_new_group_idâ skill.c:15329: error: invalid storage class for function âskill_unit_timer_subâ skill.c:16488: error: invalid storage class for function âskill_toggle_magicpowerâ skill.c:16735: error: invalid storage class for function âskill_destroy_trapâ skill.c:17380: error: invalid storage class for function âskill_parse_row_skilldbâ skill.c:17428: error: invalid storage class for function âskill_parse_row_requiredbâ skill.c:17520: error: invalid storage class for function âskill_parse_row_castdbâ skill.c:17539: error: invalid storage class for function âskill_parse_row_castnodexdbâ skill.c:17553: error: invalid storage class for function âskill_parse_row_nocastdbâ skill.c:17565: error: invalid storage class for function âskill_parse_row_unitdbâ skill.c:17606: error: invalid storage class for function âskill_parse_row_producedbâ skill.c:17628: error: invalid storage class for function âskill_parse_row_createarrowdbâ skill.c:17646: error: invalid storage class for function âskill_parse_row_spellbookdbâ skill.c:17670: error: invalid storage class for function âskill_parse_row_improvisedbâ skill.c:17695: error: invalid storage class for function âskill_parse_row_magicmushroomdbâ skill.c:17714: error: invalid storage class for function âskill_parse_row_reproducedbâ skill.c:17728: error: invalid storage class for function âskill_parse_row_abradbâ skill.c:17749: error: invalid storage class for function âskill_parse_row_changematerialdbâ skill.c:17794: error: invalid storage class for function âskill_readdbâ skill.c:17877: error: expected declaration or statement at end of input Hi I tried to input this case UNT_SPIDERWEB: if(sg->val2==0 && tsc){ int sec = skill_get_time2(sg->skill_id,sg->skill_lv); { struct TimerData* td = tsc->data[type]?get_timer(tsc->data[type]->timer):NULL; if (td) sec = DIFF_TICK(td->tick, tick); map_moveblock(bl, src->bl.x, src->bl.y, tick); clif_fixpos(bl); sg->val2=bl->id; } break; case UNT_ANKLESNARE: case UNT_MANHOLE: if( sg->val2 == 0 && tsc && (sg->unit_id == UNT_ANKLESNARE || bl->id != sg->src_id) ) { and I got error
  6. Fatal error: Call to a member function toArray() on a non-object in /home5/zhenron2/public_html/lib/Flux/Athena.php on line 175 I'm using https://github.com/missxantara/fluxcp-ra <?php require_once 'Flux/Config.php'; /** * The Athena class is used for all database interactions with each rA server, * hence its name. * * All methods related to creating/modifying any data in the Ragnarok databases * and tables shall always go into this class. */ class Flux_Athena { /** * Connection object for saving and retrieving data to the rA databases. * * @access public * @var Flux_Connection */ public $connection; /** * Server name, normally something like 'My Cool High-Rate'. * * @access public * @var string */ public $serverName; /** * Experience rates for base, job, and mvp bonus. Values in percents. * For example, 100 means 100% which is 1x offical rates. * * @access public * @var int */ public $expRates = array(); /** * Drop rate. Same rules as $expRates apply. * * @access public * @var int */ public $dropRates = array(); /** * Database used for the login-related SQL operations. * * @access public * @var string */ public $loginDatabase; /** * Logs database. (is not set until setConnection() is called.) * * @access public * @var string */ public $logsDatabase; /** * Database used for the char/map (aka everything else) SQL operations. * This does not include log-related tasks. * * @access public * @var string */ public $charMapDatabase; /** * Login server object tied to this collective rA server. * * @access public * @var Flux_LoginServer */ public $loginServer; /** * Character server object tied to this collective rA server. * * @access public * @var Flux_CharServer */ public $charServer; /** * Map server object tied to this collective rA server. * * @access public * @var Flux_MapServer */ public $mapServer; /** * Item shop cart. * * @access public * @var Flux_ItemShop_Cart */ public $cart; /** * @access public * @var Flux_LoginAthenaGroup */ public $loginAthenaGroup; /** * Max character slots for this char/map server. * * @access public * @var int */ public $maxCharSlots; /** * Boolean to signify if server is running a renewal environment or not. * * @access public * @var bool */ public $isRenewal; /** * Timezone of this char/map server pair. * * @access public * @var string */ public $dateTimezone; /** * Array of maps which prohibit the use of "reset position" feature. * * @access public * @var array */ public $resetDenyMaps; /** * Array of WoE times. * * @access public * @var array */ public $woeDayTimes = array(); /** * Config of disallowed module/actions during WoE hours. * * @access public * @var Flux_Config */ public $woeDisallow; /** * Initialize char/map pair Flux_Athena pair. * * @param Flux_Connection $connection * @param Flux_Config $charMapConfig * @param Flux_LoginServer $loginServer * @param Flux_CharServer $charServer * @param Flux_MapServer $mapServer * @access public */ public function __construct(Flux_Config $charMapConfig, Flux_LoginServer $loginServer, Flux_CharServer $charServer, Flux_MapServer $mapServer) { $this->loginServer = $loginServer; $this->charServer = $charServer; $this->mapServer = $mapServer; $this->loginDatabase = $loginServer->config->getDatabase(); $this->serverName = $charMapConfig->getServerName(); $this->expRates = $charMapConfig->getExpRates()->toArray(); $this->dropRates = $charMapConfig->getDropRates()->toArray(); $this->isRenewal = (boolean)$charMapConfig->getRenewal(); $this->maxCharSlots = (int)$charMapConfig->getMaxCharSlots(); $this->dateTimezone = $charMapConfig->getDateTimezone(); $this->charMapDatabase = $charMapConfig->getDatabase(); $resetDenyMaps = $charMapConfig->getResetDenyMaps(); if (!$resetDenyMaps) { $this->resetDenyMaps = array('sec_pri'); } elseif (!is_array($resetDenyMaps)) { $this->resetDenyMaps = array($resetDenyMaps); } else { $this->resetDenyMaps = $resetDenyMaps->toArray(); } // Get WoE times specific in servers config. $woeDayTimes = $charMapConfig->getWoeDayTimes(); if ($woeDayTimes instanceOf Flux_Config) { $woeDayTimes = $woeDayTimes->toArray(); foreach ($woeDayTimes as $dayTime) { if (!is_array($dayTime) || count($dayTime) < 4) { continue; } list ($sDay, $sTime, $eDay, $eTime) = array_slice($dayTime, 0, 4); $sTime = trim($sTime); $eTime = trim($eTime); if ($sDay < 0 || $sDay > 6 || $eDay < 0 || $eDay > 6 || !preg_match('/^\d{2}:\d{2}$/', $sTime) || !preg_match('/^\d{2}:\d{2}$/', $eTime)) { continue; } $this->woeDayTimes[] = array( 'startingDay' => $sDay, 'startingTime' => $sTime, 'endingDay' => $eDay, 'endingTime' => $eTime ); } } // Config used for disallowing access to certain modules during WoE. $woeDisallow = $charMapConfig->getWoeDisallow(); $_tempArray = array(); $this->woeDisallow = new Flux_Config($_tempArray); if ($woeDisallow instanceOf Flux_Config) { $woeDisallow = $woeDisallow->toArray(); foreach ($woeDisallow as $disallow) { if (array_key_exists('module', $disallow)) { $module = $disallow['module']; if (array_key_exists('action', $disallow)) { $action = $disallow['action']; $this->woeDisallow->set("$module.$action", true); } else { $this->woeDisallow->set($module, true); } } } } } /** * Set connection object. * * @param Flux_Connection $connection * @return Flux_Connection */ public function setConnection(Flux_Connection $connection) { $this->connection = $connection; $this->logsDatabase = $connection->logsDbConfig->getDatabase(); return $connection; } /** * Set cart object. * * @param Flux_ItemShop_Cart $cart * @return Flux_ItemShop_Cart */ public function setCart(Flux_ItemShop_Cart $cart) { $this->cart = $cart; return $cart; } /** * When casted to a string, the server name should be used. * * @return string * @access public */ public function __toString() { return $this->serverName; } /** * Transfer credits from one account to another. * * @param int $fromAccountID Account ID * @param string $targetCharName Character name of person receiving credits * @param int $credits Amount of credits */ public function transferCredits($fromAccountID, $targetCharName, $credits) { // // Return values: // -1 = From or to account, one or the other does not exist. (likely the latter.) // -2 = Sender has an insufficient balance. // -3 = Unknown character. // true = Successful transfer // false = Error // $sql = "SELECT account_id, char_id, name AS char_name FROM {$this->charMapDatabase}.`char` WHERE `char`.name = ? LIMIT 1"; $sth = $this->connection->getStatement($sql); if (!$sth->execute(array($targetCharName)) || !($char=$sth->fetch())) { // Unknown character. return -3; } $targetAccountID = $char->account_id; $targetCharID = $char->char_id; $sql = "SELECT COUNT(account_id) AS accounts FROM {$this->loginDatabase}.login WHERE "; $sql .= "account_id = ? OR account_id = ? LIMIT 2"; $sth = $this->connection->getStatement($sql); if (!$sth->execute(array($fromAccountID, $targetAccountID)) || $sth->fetch()->accounts != 2) { // One or the other, from or to, are non-existent accounts. return -1; } if (!$this->loginServer->hasCreditsRecord($fromAccountID)) { // Sender has a zero balance. return -2; } $creditsTable = Flux::config('FluxTables.CreditsTable'); $xferTable = Flux::config('FluxTables.CreditTransferTable'); // Get balance of sender. $sql = "SELECT balance FROM {$this->loginDatabase}.$creditsTable WHERE account_id = ? LIMIT 1"; $sth = $this->connection->getStatement($sql); if (!$sth->execute(array($fromAccountID))) { // Error. return false; } if ($sth->fetch()->balance < $credits) { // Insufficient balance. return -2; } // Take credits from fromAccount first. if ($this->loginServer->depositCredits($fromAccountID, -$credits)) { // Then deposit to targetAccount next. if (!$this->loginServer->depositCredits($targetAccountID, $credits)) { // Attempt to restore credits if deposit to toAccount failed. $this->loginServer->depositCredits($fromAccountID, $credits); return false; } else { $sql = "INSERT INTO {$this->charMapDatabase}.$xferTable "; $sql .= "(from_account_id, target_account_id, target_char_id, amount, transfer_date) "; $sql .= "VALUES (?, ?, ?, ?, NOW())"; $sth = $this->connection->getStatement($sql); // Log transfer. $sth->execute(array($fromAccountID, $targetAccountID, $targetCharID, $credits)); return true; } } else { return false; } } /** * Set loginAthenaGroup object. * * @param Flux_LoginAthenaGroup $loginAthenaGroup * @return Flux_LoginAthenaGroup */ public function setLoginAthenaGroup(Flux_LoginAthenaGroup $loginAthenaGroup) { $this->loginAthenaGroup = $loginAthenaGroup; return $loginAthenaGroup; } /** * Check if a character exists with a particular char ID. * * @param int $charID * @return bool True/false if char exists or doesn't. */ public function charExists($charID) { $sql = "SELECT char_id FROM {$this->charMapDatabase}.`char` WHERE "; $sql .= "`char`.char_id = ? LIMIT 1"; $sth = $this->connection->getStatement($sql); if ($sth->execute(array($charID)) && ($char=$sth->fetch()) && $char->char_id) { return true; } else { return false; } } /** * Check if a charID belongs to an accountID. * * @param int $charID * @param int $accountID * @return bool */ public function charBelongsToAccount($charID, $accountID) { $sql = "SELECT char_id FROM {$this->charMapDatabase}.`char` WHERE "; $sql .= "`char`.char_id = ? AND `char`.account_id = ? LIMIT 1"; $sth = $this->connection->getStatement($sql); if ($sth->execute(array($charID, $accountID)) && ($char=$sth->fetch()) && $char->char_id) { return true; } else { return false; } } /** * Check if char with charID is online. * * @param int $charID * @return bool */ public function charIsOnline($charID) { $sql = "SELECT char_id FROM {$this->charMapDatabase}.`char` WHERE `char`.online > 0 "; $sql .= "AND `char`.char_id = ? LIMIT 1"; $sth = $this->connection->getStatement($sql); if ($sth->execute(array($charID)) && ($char=$sth->fetch()) && $char->char_id) { return true; } else { return false; } } /** * Check if account has any online characters at the moment. * * @param int $accountId * @return bool */ public function accountHasOnlineChars($accountID) { $sql = "SELECT char_id FROM {$this->charMapDatabase}.`char` WHERE `char`.online > 0 "; $sql .= "AND `char`.account_id = ? ORDER BY `char`.online DESC LIMIT 1"; $sth = $this->connection->getStatement($sql); if ($sth->execute(array($accountID)) && ($char=$sth->fetch()) && $char->char_id) { return true; } else { return false; } } /** * Get character data of charID. * * @param int $charID * @return mixed Returns Flux_DataObject or false. */ public function getCharacter($charID) { $sql = "SELECT `char`.* FROM {$this->charMapDatabase}.`char` WHERE "; $sql .= "`char`.char_id = ? LIMIT 1"; $sth = $this->connection->getStatement($sql); if ($sth->execute(array($charID)) && ($char=$sth->fetch())) { return $char; } else { return false; } } /** * Get character prefs. * * @param int $charID Character ID * @param array $prefs Only these prefs? * @return mixed Flux_Config or false. */ public function getPrefs($charID, array $prefs = array()) { $sql = "SELECT account_id FROM {$this->charMapDatabase}.`char` WHERE char_id = ? LIMIT 1"; $sth = $this->connection->getStatement($sql); if ($sth->execute(array($charID)) && ($char=$sth->fetch())) { $charPrefsTable = Flux::config('FluxTables.CharacterPrefsTable'); $pref = array(); $bind = array($char->account_id, $charID); $sql = "SELECT name, value FROM {$this->charMapDatabase}.$charPrefsTable "; $sql .= "WHERE account_id = ? AND char_id = ?"; if ($prefs) { foreach ($prefs as $p) { $pref[] = "name = ?"; $bind[] = $p; } $sql .= sprintf(' AND (%s)', implode(' OR ', $pref)); } $sth = $this->connection->getStatement($sql); if ($sth->execute($bind)) { $prefsArray = array(); foreach ($sth->fetchAll() as $p) { $prefsArray[$p->name] = $p->value; } return new Flux_Config($prefsArray); } else { return false; } } else { return false; } } /** * Set character prefs. * * @param int $charID * @param array $prefsArray pref=>value pairs. * @return bool */ public function setPrefs($charID, array $prefsArray) { $sql = "SELECT account_id FROM {$this->charMapDatabase}.`char` WHERE char_id = ? LIMIT 1"; $sth = $this->connection->getStatement($sql); if ($sth->execute(array($charID)) && ($char=$sth->fetch())) { $charPrefsTable = Flux::config('FluxTables.CharacterPrefsTable'); $pref = array(); $bind = array($char->account_id, $charID); $sql = "SELECT id, name, value FROM {$this->charMapDatabase}.$charPrefsTable "; $sql .= "WHERE account_id = ? AND char_id = ?"; if ($prefsArray) { foreach ($prefsArray as $prefName => $prefValue) { $pref[] = "name = ?"; $bind[] = $prefName; } $sql .= sprintf(' AND (%s)', implode(' OR ', $pref)); } $sth = $this->connection->getStatement($sql); if ($sth->execute($bind)) { $prefs = $sth->fetchAll(); $update = array(); $usql = "UPDATE {$this->charMapDatabase}.$charPrefsTable "; $usql .= "SET value = ? WHERE id = ?"; $usth = $this->connection->getStatement($usql); $isql = "INSERT INTO {$this->charMapDatabase}.$charPrefsTable "; $isql .= "(account_id, char_id, name, value, create_date) "; $isql .= "VALUES (?, ?, ?, ?, NOW())"; $isth = $this->connection->getStatement($isql); foreach ($prefs as $p) { $update[$p->name] = $p->id; } foreach ($prefsArray as $pref => $value) { if (array_key_exists($pref, $update)) { $id = $update[$pref]; $usth->execute(array($value, $id)); } else { $isth->execute(array($char->account_id, $charID, $pref, $value)); } } return true; } else { return false; } } else { return false; } } /** * Get a single character pref. * * @param int $charID * @param string $pref * @return mixed string or false. */ public function getPref($charID, $pref) { $prefs = $this->getPrefs($charID, array($pref)); if ($prefs instanceOf Flux_Config) { return $prefs->get($pref); } else { return false; } } /** * Set a single character pref. * * @param int $charID * @param string $pref * @param string $value * @return bool */ public function setPref($charID, $pref, $value) { return $this->setPrefs($charID, array($pref => $value)); } /** * Re-set the appearance of a character. * * @param int $charID * @return mixed */ public function resetLook($charID) { // Return values: // -1 = Character is online, cannot reset. // -2 = Unknown character. // false = Failed to reset. // true = Successfully reset. $char = $this->getCharacter($charID); if (!$char) { return -2; } if ($char->online) { return -1; } $sql = "UPDATE {$this->charMapDatabase}.inventory SET "; $sql .= "equip = 0 WHERE char_id = ?"; $sth = $this->connection->getStatement($sql); if (!$sth->execute(array($charID))) { return false; } $sql = "UPDATE {$this->charMapDatabase}.`char` SET "; $sql .= "hair = 0, hair_color = 0, clothes_color = 0, weapon = 0, shield = 0, "; $sql .= "head_top = 0, head_mid = 0, head_bottom = 0 "; $sql .= "WHERE char_id = ?"; $sth = $this->connection->getStatement($sql); if (!$sth->execute(array($charID))) { return false; } else { return true; } } /** * Re-set the position of a character. * * @param int $charID * @return mixed */ public function resetPosition($charID) { // Return values: // -1 = Character is online, cannot reset. // -2 = Reset cannot be done from current map. // -3 = Unknown character. // false = Failed to reset. // true = Successfully reset. $char = $this->getCharacter($charID); if (!$char) { return -3; } if ($char->online) { return -1; } $charMap = basename($char->last_map, '.gat'); foreach ($this->resetDenyMaps as $map) { $denyMap = basename($map, '.gat'); if ($charMap == $denyMap) { return -2; } } $sql = "UPDATE {$this->charMapDatabase}.`char` AS ch SET "; $sql .= "ch.last_map = ch.save_map, ch.last_x = ch.save_x, ch.last_y = ch.save_y "; $sql .= "WHERE ch.char_id = ?"; $sth = $this->connection->getStatement($sql); if ($sth->execute(array($charID))) { return true; } else { return false; } } /** * Get the current server time, based on the DateTimezone servers.php config. * * @param string $format Similar to that of PHP's date() function. * @return string */ public function getServerTime($format = 'U') { $dateTime = date_create('now'); if ($this->dateTimezone) { $dateTime->setTimeZone(new DateTimeZone($this->dateTimezone)); } return $dateTime->format($format); } /** * Check if it currently WoE according to the configured hours and timezone. * * @return bool */ public function isWoe() { $serverTime = (int)$this->getServerTime(); $dayNames = array('Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'); foreach ($this->woeDayTimes as $woeDayTime) { $sDay = $dayNames[$woeDayTime['startingDay']]; $eDay = $dayNames[$woeDayTime['endingDay']]; $start = strtotime("$sDay {$woeDayTime['startingTime']}"); $end = strtotime("$eDay {$woeDayTime['endingTime']}"); if ($serverTime > $start && $serverTime < $end) { return true; } } return false; } } ?> Athena.php
  7. http://rathena.org/board/topic/69534-forgot-password-error/ <-- same problem with this topic
  8. I got the same case error can I ask what should you replace? from the group id?
  9. <?php if (!defined('FLUX_ROOT')) exit; $title = Flux::message('ResetPassTitle'); $serverNames = $this->getServerNames(); $resetPassTable = Flux::config('FluxTables.ResetPasswordTable'); if (count($_POST)) { $userid = $params->get('userid'); $email = $params->get('email'); $groupName = $params->get('login'); if (!$userid) { $errorMessage = Flux::message('ResetPassEnterAccount'); } elseif (!$email) { $errorMessage = Flux::message('ResetPassEnterEmail'); } else { if (!$groupName || !($loginAthenaGroup=Flux::getServerGroupByName($groupName))) { $loginAthenaGroup = $session->loginAthenaGroup; } $sql = "SELECT account_id, user_pass, level FROM {$loginAthenaGroup->loginDatabase}.login WHERE "; if ($loginAthenaGroup->loginServer->config->getNoCase()) { $sql .= 'LOWER(userid) = LOWER(?) '; } else { $sql .= 'BINARY userid = ? '; } $sql .= "AND email = ? AND state = 0 AND sex IN ('M', 'F') LIMIT 1"; $sth = $loginAthenaGroup->connection->getStatement($sql); $sth->execute(array($userid, $email)); $row = $sth->fetch(); if ($row) { if ($row->level >= Flux::config('NoResetPassLevel')) { $errorMessage = Flux::message('ResetPassDisallowed'); } else { $code = md5(rand() + $row->account_id); $sql = "INSERT INTO {$loginAthenaGroup->loginDatabase}.$resetPassTable "; $sql .= "(code, account_id, old_password, request_date, request_ip, reset_done) "; $sql .= "VALUES (?, ?, ?, NOW(), ?, 0)"; $sth = $loginAthenaGroup->connection->getStatement($sql); $res = $sth->execute(array($code, $row->account_id, $row->user_pass, $_SERVER['REMOTE_ADDR'])); if ($res) { require_once 'Flux/Mailer.php'; $name = $loginAthenaGroup->serverName; $link = $this->url('account', 'resetpw', array('_host' => true, 'code' => $code, 'account' => $row->account_id, 'login' => $name)); $mail = new Flux_Mailer(); $sent = $mail->send($email, 'Reset Password', 'resetpass', array('AccountUsername' => $userid, 'ResetLink' => htmlspecialchars($link))); } } } if (empty($errorMessage)) { if (empty($sent)) { $errorMessage = Flux::message('ResetPassFailed'); } else { $session->setMessageData(Flux::message('ResetPassEmailSent')); $this->redirect(); } } } } ?>
  10. already solve problem Now I remimber
  11. Hello need guide about RSS on forum I forgot how to set up RSS on IPB need guide thanks
  12. Missing View!Module: voteforpoints, Action: index Request URI: /?module=voteforpoints File system location: /home5/zhenron2/public_html/themes/themes2013/voteforpoints/index.php Welcome, barbie
  13. is that from cp_resetpass? what should I put in ID group?
  14. Error: Flux_Error Message: MySQL error (SQLSTATE: 42S22, ERROR: 1054): Unknown column 'level' in 'field list' File: /home5/zhenron2/public_html/lib/Flux/Connection/Statement.php:27 File Line Function/Method /home5/zhenron2/public_html/modules/account/resetpass.php 34 Flux_Connection_Statement::execute() /home5/zhenron2/public_html/lib/Flux/Template.php 337 include() /home5/zhenron2/public_html/lib/Flux/Dispatcher.php 168 Flux_Template::render() /home5/zhenron2/public_html/index.php 177 Flux_Dispatcher::dispatch()
  15. I would like to upgrade the mjolnir but it impossible to refine? http://ratemyserver.net/index.php?page=item_db&item_id=1530
  16. @medo did you upload cp_support_tickets, cp_support_reply, cp_support_dep and cp_support_settings to your ragnarok (data base)??
×
×
  • Create New...