Jump to content

Frexorie

Members
  • Posts

    23
  • Joined

  • Last visited

Profile Information

  • Gender
    Male
  • Location
    Anywhere =P

Recent Profile Visitors

2865 profile views

Frexorie's Achievements

Poring

Poring (1/15)

1

Reputation

  1. Hello rAthena devs and community, today I have compiled a fresh trunk to pre-re but when i login to a newly created char and the server gives me this error: (attached screenshot) ---absolutely no custom skills added or any modifications except compiling to pre-re--- I kindly ask for any help or guides to fix. -Thank you in advance and have a nice day~
  2. This only removed the icon from the mini-map.
  3. Hello to all, I am sorry if i ask you this... How to remove this?? im sorry and thank u again T__T client version 2017-05-17
  4. If you are hosting it locally or publicly? (char, map, subnet, and clientinfo may affect this) Check your ports if they are open. do you use Packet Obfuscation? (check also packet db_ver and mmo.h)
  5. Frexorie

    Need help

    /****Edit: Okay Thanks guys on trying to help me now i got error by doing some of my trouble shooting i can proceed now on fixing this error***/
  6. Frexorie

    Need help

    hi to all rAthena Staffs and Members! I need help about why i can't connect to my server (well i can, but not untill character select)... i know this is a common question but in my case i believe it isn't... 100% ports 6121-6900 working. 100% same WAN ip's on char , map and subnet .conf also clientinfo.xml 100% same db_version 45 with clientinfo 100% Absolutely no errors (like cliff parse etc.) Currently using the Latest and clean rAthena with ragexe 2013-08-07 tried to disable packet Obfuscation in core.h (compiled of course) + re-diffed my client with disable packet Obfuscation using N.E.M.O (same thing can't connect). tried to re-diffed again with packet keys re-edited db_packets enabling packet Obfuscation in core.h (compiled ofc) but still can't connect. i am using ec2 aws - AWS | Amazon Elastic Compute Cloud (EC2) – Hosting i also tried to host it locally on my pc i can connect perfectly. but not on my server. i really need help Thanks you so much! -Frexorie
  7. I enabled it before i install the flux Anyways im going to try as you said: -->Check folder themes/default/logdata/ (it like default). You must have themes/YOURTHEME/logdata. Thank you for the reply ^^V
  8. I have them Sir.... Here's my screenie. --------------- And here's the content of my pick.php if ever you would like to check it too <?php if (!defined('FLUX_ROOT')) exit; $title = Flux::message('PickLogTitle'); $sql = "SELECT COUNT(id) AS total FROM {$server->logsDatabase}.picklog"; $sth = $server->connection->getStatementForLogs($sql); $sth->execute(); $paginator = $this->getPaginator($sth->fetch()->total); $paginator->setSortableColumns(array( 'time' => 'desc', 'char_id', 'type', 'nameid', 'amount', 'refine', 'card0', 'card1', 'card2', 'card3', 'map' )); $col = "time, char_id, type, nameid, amount, refine, card0, card1, card2, card3, map"; $sql = $paginator->getSQL("SELECT $col FROM {$server->logsDatabase}.picklog"); $sth = $server->connection->getStatementForLogs($sql); $sth->execute(); $picks = $sth->fetchAll(); if ($picks) { $charIDs = array(); $itemIDs = array(); $mobIDs = array(); $pickTypes = Flux::config('PickTypes'); foreach ($picks as $pick) { $itemIDs[$pick->nameid] = null; if ($pick->type == 'M' || $pick->type == 'L') { $mobIDs[$pick->char_id] = null; } else { $charIDs[$pick->char_id] = null; } if ($pick->card0) { $itemIDs[$pick->card0] = null; } if ($pick->card1) { $itemIDs[$pick->card1] = null; } if ($pick->card2) { $itemIDs[$pick->card2] = null; } if ($pick->card3) { $itemIDs[$pick->card3] = null; } $pick->pick_type = $pickTypes->get($pick->type); } if ($charIDs) { $ids = array_keys($charIDs); $sql = "SELECT char_id, name FROM {$server->charMapDatabase}.`char` WHERE char_id IN (".implode(',', array_fill(0, count($ids), '?')).")"; $sth = $server->connection->getStatement($sql); $sth->execute($ids); $ids = $sth->fetchAll(); // Map char_id to name. foreach ($ids as $id) { $charIDs[$id->char_id] = $id->name; } } require_once 'Flux/TemporaryTable.php'; if ($mobIDs) { $mobDB = "{$server->charMapDatabase}.monsters"; $fromTables = array("{$server->charMapDatabase}.mob_db", "{$server->charMapDatabase}.mob_db2"); $tempMobs = new Flux_TemporaryTable($server->connection, $mobDB, $fromTables); $ids = array_keys($mobIDs); $sql = "SELECT ID, iName FROM {$server->charMapDatabase}.monsters WHERE ID IN (".implode(',', array_fill(0, count($ids), '?')).")"; $sth = $server->connection->getStatement($sql); $sth->execute($ids); $ids = $sth->fetchAll(); // Map id to name. foreach ($ids as $id) { $mobIDs[$id->ID] = $id->iName; } } if ($itemIDs) { if($server->isRenewal) { $fromTables = array("{$server->charMapDatabase}.item_db_re", "{$server->charMapDatabase}.item_db2"); } else { $fromTables = array("{$server->charMapDatabase}.item_db", "{$server->charMapDatabase}.item_db2"); } $tableName = "{$server->charMapDatabase}.items"; $tempTable = new Flux_TemporaryTable($server->connection, $tableName, $fromTables); $shopTable = Flux::config('FluxTables.ItemShopTable'); $ids = array_keys($itemIDs); $sql = "SELECT id, name_japanese FROM {$server->charMapDatabase}.items WHERE id IN (".implode(',', array_fill(0, count($ids), '?')).")"; $sth = $server->connection->getStatement($sql); $sth->execute($ids); $ids = $sth->fetchAll(); // Map nameid to name. foreach ($ids as $id) { $itemIDs[$id->id] = $id->name_japanese; } } foreach ($picks as $pick) { if (($pick->type == 'M' || $pick->type == 'L') && array_key_exists($pick->char_id, $mobIDs)) { $pick->char_name = $mobIDs[$pick->char_id]; } elseif (array_key_exists($pick->char_id, $charIDs)) { $pick->char_name = $charIDs[$pick->char_id]; } if (array_key_exists($pick->nameid, $itemIDs)) { $pick->item_name = $itemIDs[$pick->nameid]; } if (array_key_exists($pick->card0, $itemIDs)) { $pick->card0_name = $itemIDs[$pick->card0]; } if (array_key_exists($pick->card1, $itemIDs)) { $pick->card1_name = $itemIDs[$pick->card1]; } if (array_key_exists($pick->card2, $itemIDs)) { $pick->card2_name = $itemIDs[$pick->card2]; } if (array_key_exists($pick->card3, $itemIDs)) { $pick->card3_name = $itemIDs[$pick->card3]; } } } ?>
  9. Hi to all especially to rAthena Staffs, It's been 3 weeks on finding key words like: "rA Log error" "Pick Logs" and etc... xD I would like to ask how to fix this? and also configured these: 'logdata' => array( 'char' => 'Characters', //'inter' => 'Interactions', 'command' => 'Commands', //'branch' => 'Branches', //'chat' => 'Chat Messages', 'login' => 'Logins', //'mvp' => 'MVP', //'npc' => 'NPC', 'pick' => 'Item Picks', //'zeny' => 'Zeny' ), What went wrong o.o? Thanks for the future response
  10. Yeah my friend Veiler told me that through Private Message.. thanks painrugi also: -Thanks to Veiler-
  11. here... maybe you could understand where I missed.
  12. Hi to all i would like to know what files i need to configure, to make my weapon sprite show when i attack? ----------------------- So let's say i have c_blade.spr & .act as file and it's id is 22000 on the item_db.txt i wrote: 22000,c_blade,Chronic Blade, -----etc----,2,{ script },{ script },{ script } idnum2resnametable.txt: 22000#c_blade# idnum2displaynametable.txt: 22000#Chronic_Blade# slotcounttable.txt: 22000#4# idnum2itemdisplaynametable.txt: 22000#script.....# iteminfo.lua: [22000] = { unidentifiedDisplayName = "Chronic Blade", unidentifiedResourceName = "c_blade", unidentifiedDescriptionName = { " Under Script... " }, identifiedDisplayName = "Chronic Blade", identifiedResourceName = "c_blade", identifiedDescriptionName = { "Under Script..." }, slotCount = 4, ClassNum = 2 -------------------------------------------------------- What went wrong, and what other files I need? Why doesn't my weapon sprite doesn't show when i attack? How I will fix these? When? Where? Who? Why? I also red these guides: http://rathena.org/board/topic/57496-how-to-add-custom-weapons/ http://rathena.org/board/topic/65897-custom-weapon/ http://rathena.org/board/topic/79646-release-2012-04-10a-with-no-weapon-item-id-restriction/#entry184288 http://rathena.org/board/topic/82837-adding-custom-weapon-help/ http://ratemyserver.net/index.php?page=riot_bible_section&section=6 T___T PLEASE I HUMBLY BEG YOUR HELP...
  13. Hellow Gyro i-edit mu din yung sa System/luafiles514/Lua files/iteminfo.lua mu ^__^
  14. Awts ou nga kalimutan ko.. Salamat Sorry po sa late response.
×
×
  • Create New...