Jump to content

diamondjack

Members
  • Posts

    9
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

diamondjack's Achievements

Poring

Poring (1/15)

0

Reputation

1

Community Answers

  1. thanks yeah, i just noticed the comment // Pre-RE: now i couldn't test it earlier, it works now. thank you
  2. Hi, I'm using default healer and warper script, healer: https://github.com/rathena/rathena/blob/master/npc/custom/healer.txt warper: https://github.com/rathena/rathena/blob/master/npc/custom/warper.txt the npc doesn't load in izlude, and kafra's warp service doesn't have map destination (only when I use healer and warper script) Can anybody help me with this? Thank you.
  3. Hi, I'm using NEMO to load my custom dll. To load the dll it says I have to put the filename on "NEMO-pre_3p0/Input/dlls.txt". On "NEMO-pre_3p0/Input/dlls.txt": //All Lines beginning with // are ignored //All strings ending with a .dll is taken as the current DLL and lines that follow that doesnt have that pattern are taken as functions. // To import function by name simply put the name // To import function by ordinal number put the ordinal following a ':' symbol (like :41 below) // For better clarity put spaces in front of either types of function imports test.dll _DllMain@12 // :41 Where do I put the dll? on the NEMO folder ? It already tried it. Here's my custom dll (coded in delphi): uses SysUtils, Classes, Windows; {$R *.res} procedure DllMain(reason: Integer); begin if reason = DLL_PROCESS_ATTACH then begin MessageBoxA(0,'test','test',0); end; end; begin DllProc := DllMain; DllMain(DLL_PROCESS_ATTACH); end. Application error when I run the client. How to properly load it ?
  4. On the installation guide it says: Installing ----------------------------------------------------------------- *** Make sure the System Requirements are met. 1. Unzip the package into your web site directory. 2. Create a user with access to ragnarok and cp databases. 3. Set write access to apache write in ./install folder 4. Run ./install/install.php I already imported table.sql but it still wrong username or password when I try to log in. CREATE TABLE `cp_bruteforce` ( `action_id` int(11) NOT NULL auto_increment, `user` varchar(24) NOT NULL default '', `IP` varchar(20) NOT NULL default '', `date` int(11) NOT NULL default '0', `ban` int(11) NOT NULL default '0', PRIMARY KEY (`action_id`), KEY `user` (`user`), KEY `IP` (`IP`) ) ENGINE=MyISAM AUTO_INCREMENT=1 ; CREATE TABLE `cp_links` ( `cod` int(11) NOT NULL auto_increment, `name` varchar(30) NOT NULL, `url` varchar(255) NOT NULL, `desc` text NOT NULL, `size` int(11) default '0', PRIMARY KEY (`cod`) ) ENGINE=MyISAM AUTO_INCREMENT=1 ; CREATE TABLE `cp_querylog` ( `action_id` int(11) NOT NULL auto_increment, `Date` datetime NOT NULL default '0000-00-00 00:00:00', `User` varchar(24) NOT NULL default '', `IP` varchar(20) NOT NULL default '', `page` varchar(24) NOT NULL default '', `query` text NOT NULL, PRIMARY KEY (`action_id`), KEY `action_id` (`action_id`) ) TYPE=ENGINE AUTO_INCREMENT=1 ; CREATE TABLE `cp_server_status` ( `last_checked` datetime NOT NULL default '0000-00-00 00:00:00', `status` tinyint(1) NOT NULL default '0' ) ENGINE=MyISAM; I use this because there's a ceres theme that I want to use.
  5. When I tried to log in to ceres cp it always says wrong username or password. My server has md5 encryption so I enabled md5 on ceres config..still have the same problem $CONFIG['md5_pass'] = '1' ; . Also do I have to create a different database for ceres cp ? I don't know what tables to create. //sql connections $CONFIG['rag_serv'] = $my_db_host; // SQL Ragnarok Host $CONFIG['rag_user'] = $my_db_user; // SQL Ragnarok User $CONFIG['rag_pass'] = $my_db_pass; // SQL Ragnarok Password $CONFIG['rag_db'] = $my_ragnarok; // SQL Ragnarok Database name $CONFIG['log_db'] = $my_ragnarok_log; $CONFIG['cp_serv'] = $my_db_host; // SQL CP Host $CONFIG['cp_user'] = $my_db_user; // SQL CP User $CONFIG['cp_pass'] = $my_db_pass; // SQL CP Password $CONFIG['cp_db'] = '????' // create database for ceres ? Thank you.
  6. Thanks for the reply, I couldn't find the intro map on google, what is the name of the intro map? I think maybe I have problems with the maps. I tried to change the start_point to Prontera but my client freezes and crashed. I have to download newprontera.grf fro it to work. I can login sometimes but after a few seconds I disconnected, then rejected from server. I saw this log on the console "Map-server #0 has disconnected" does this mean map server had crashed ? i have fixed this by increasing the RAM(memory) of the server, the map server file takes a lot of memory.
  7. Hello, I have setup rAthena on Linux, client: 2013-08-07aRagexe I was able to login on the game at first try, my character is already in the game, it just has a black background like this one https://rathena.org/board/uploads/monthly_03_2016/post-38048-0-81636600-1458617815.png so i logged out coz i want to fix it, then my second try to log in i got rejected from the server. I only added OldIzlude.grf to RO folder and modify DATA.INI, I didn't edit or modify any files on the server at that time. No errors on the console thou, I've attached the image below not sure what's the problem, any help please? thank you
  8. Pa help po sa pag compile ng files sa linux. Sa windows na compile ko sya using Microsoft Visual Studio para ma build yung apat na files. (char-server.exe, login-server.exe, map-server.exe, mapcache.exe ). Pano ko po mabibuild yung mga files na to sa linux (no desktop)? Dito ko na-download yung server files: https://github.com/rathena/rathena EDIT* nevermind, i think nacompile ko na, hindi ko na type sa console 1. chmod +x configure 2. ./configure
×
×
  • Create New...