Jump to content

hendra814

Members
  • Posts

    882
  • Joined

  • Last visited

  • Days Won

    8

Posts posted by hendra814

  1. 5 hours ago, max65 said:

    Hi rathena,I do not know if the post is in the right places (sorry if it's not good).

    i have try Endless Tower but have a gravity error Quest when i started =s can you tell me how resolve that plz 😃

     

    920945697_Sanstitre.thumb.png.ba0ae91a4ded46c43a1bb3fac0fc117d.png

    Thx for your repply ^^

     

    Try update your quest lua files on system folder.

    You could try from Zackdreaver https://github.com/zackdreaver/ROenglishRE

    or asheraf https://github.com/Asheraf/Translation

    • Upvote 1
  2. On 4/21/2018 at 2:53 PM, Anacondaqq said:

     

    Idea

    Create a package of code compiler for the emulator, which took up little space, and will as portable as possible, it will not require installation, and which can be stored on a USB flash drive.
    Current Status: semi-done (works with almost emulator, except rAthena for reasons inside CMakeList.txt and other broken parts in code)

    Download Link: MEGA or Google Drive (189MB)

    How to use?

    Like on Linux, but on windows (thx to Cygwin)

    1.  Download, extract, run start_console.cmd
    2.  cd D:\path\to\your\emulator
    3. make clean && ./configure && make server
    4. wait when compilation will finish
    5. ./run-server.bat
    6. make sure that your SQL server is working fine (if you don't have any install, or take OpenServer from RO offline pack)

    If you wish to run a server outside the Cygwin environment, you need a lot of dlls copy-paste from /bin/ folder to emulator
    I give up to finish it and fix rAthena compiler issue (because the issue with CMake files, they are weird), because I have no time and it's out of my interest.

    Extra Notes
    Request: please, someone who can fix the rAthena to make work with this release.
    189MB compiler is very helpful, because not need to download 1.9GB for lite MSBuild, and ~8-9GB for Visual Studio. Feel the difference.

     

    • Note: cygwin always slower than original native code.
    • Note: rAhena can't compile with -stl=c++11, use -stl=gnu++11
    • Note: even with this -stl=gnu+11 you will get a crash a char-server, if you are a developer, try to debug it by yourself and fix, this is rAthena issue, not a package issue.
    • Note: tested: hercules, eathena, brathena, 3ceam -> works fine without any issues, even in gdb mode.

     

    i already download, but when i start start_console.cmd it's not showing any windows.

    i'm using windows 10 X64 bit version

    edit: found the problem, can't run inside another folder.

    but got error like this, please help

    image.png.ac5ee1bcddde262ae6e8b6b37aab11ae.png

  3. 12 hours ago, Sir Meliodas said:

    Yes I put the same date as CheckAttendance.lub

    CheckAttendance.lub

    Config = {StartDate = 20181101, EndDate = 20181130}

    attendance.yml

    Start: 20181101
        End: 20181130

    Check at some folder 

    -first conf\battle\feature.conf, check is the feature already on

    Quote

    // Attendance System (Note 1)
    // Requires: 2018-03-07bRagexeRE or later
    feature.attendance: on

    -second db\re\attendace.yml, check the date and item reward

    Spoiler
    Quote

    Header:
      Type: ATTENDANCE_CONF
      Version: 1
      
    Attendance:
      - Start: 20181101
        End: 20181130
        Rewards:
          - Day: 1
            ItemId: 22979
          - Day: 2
            ItemId: 6316
          - Day: 3
            ItemId: 12265
            Amount: 5
          - Day: 4
            ItemId: 23047
            Amount: 5
          - Day: 5
            ItemId: 23038
          - Day: 6
            ItemId: 23043
          - Day: 7
            ItemId: 23340
            Amount: 3
          - Day: 8
            ItemId: 12516
            Amount: 5
          - Day: 9
            ItemId: 23307
            Amount: 5
          - Day: 10
            ItemId: 12610
          - Day: 11
            ItemId: 14533
            Amount: 2
          - Day: 12
            ItemId: 23012
            Amount: 3
          - Day: 13
            ItemId: 23048
            Amount: 5
          - Day: 14
            ItemId: 12264
            Amount: 5
          - Day: 15
            ItemId: 23046
            Amount: 5
          - Day: 16
            ItemId: 12515
            Amount: 5
          - Day: 17
            ItemId: 12522
            Amount: 5
          - Day: 18
            ItemId: 12523
            Amount: 5
          - Day: 19
            ItemId: 6234
          - Day: 20
            ItemId: 22845
     

     

    -third at system\checkattendance.lub, same as db folder check the date and item reward

    Spoiler
    Quote

    Config = {
        StartDate = 20181101,
        EndDate = 20181130
    }

    Reward = {
        { 1, 22979, 1 },
        { 2, 6316, 1 },
        { 3, 12265, 5 },
        { 4, 23047, 5 },
        { 5, 23038, 1 },
        { 6, 23043, 1 },
        { 7, 23340, 3 },
        { 8, 12516, 5 },
        { 9, 23307, 5 },
        { 10, 12610, 1 },
        { 11, 14533, 2 },
        { 12, 23012, 3 },
        { 13, 23048, 5 },
        { 14, 12264, 5 },
        { 15, 23046, 5 },
        { 16, 12515, 5 },
        { 17, 12522, 5 },
        { 18, 12523, 5 },
        { 19, 6234, 1 },
        { 20, 22845, 1 }
    }

    function main()
        result, msg = InsertCheckAttendanceConfig(Config.EvendOnOff, Config.StartDate, Config.EndDate)
        if not result then
            return false, msg
        end
        for k, rewardtbl in pairs(Reward) do
            result, msg = InsertCheckAttendanceReward(rewardtbl[1], rewardtbl[2], rewardtbl[3])
            if not result then
                return false, msg
            end
        end
        return true, "success"
    end
     

     

    here my ss

    Spoiler

    screenrAthena099.thumb.jpg.b5a2324057dbe08ca9e4ee67962a3693.jpg

     

  4. 9 hours ago, max65 said:

    its okay now with "brackets" for change iteminfo.lua , but now my second problem's

    1064570784_Sanstitre.thumb.png.760ce3f8cad132f047e5724119fad500.png

    do you know why i can see with no error my hat but i dont see on my charactere ? have you just idea ? ^^

    have follow this guide

    and for Iteminfolua

    	},
        	[40000] = {
    		unidentifiedDisplayName = "Black_Feather_Beret",
    		unidentifiedResourceName = "Black_Feather_Beret",
    		unidentifiedDescriptionName = { "Unknown Item, can be identified by using a ^6666CCMagnifier^000000." },
    		identifiedDisplayName = "Black_Feather_Beret",
    		identifiedResourceName = "Black_Feather_Beret",
    		identifiedDescriptionName = { "Black_Feather_Beret" },
    		slotCount = 0,
    		ClassNum = 1772
    	},

     

    update 2 lua files at data\luafiles514\lua files\datainfo

    - accname.lub 

    - accessoryid.lub

    • Love 1
  5. 4 hours ago, wwshakioww said:

     

     

    First of all, I have difficult English.
    I am Korean and I am studying Athena.

    I want to implement the look of the item.
    18510 in the itemdb file
    I could not implement this

    How is it possible?

    Please ask for help please .. T ^ T ;;

     

     

     

     

    132513515.png

    The problem is you missing iteminfo_sak.lua or you diff your client to read another iteminfo file name.

  6. 7 hours ago, OmarAcero said:

    can someone tell me the correct way to install MySQL in cygwin?

    The problem is that I'm using windows 32 bits and I need to compile the emulator in cygwin...

    Note: I do not have installed the visual basic, because it takes up a lot of hard disk space...

     

    Maybe you could use this method

    https://rathena.org/board/topic/111269-guide-lightweight-compiler-for-windows-for-replacement-heavy-visual-studio-ide-compile-rathena-faster-save-your-bandwidth-and-disk-space/?page=0#comment-326230

    • Upvote 1
  7. 6 hours ago, max65 said:

    Hi, have little problem's =s

    i used

     for iteminfo.lua but when i used it, my item appears with bug... =s

    2022314689_screenTheFairiesOfRo022.thumb.jpg.4646406b814c68501b3a6c8756b3475f.jpg

    Red: my custom item appears in my equipement items but not on my charactere ... how solved that and

    Blue: since i use this iteminfo, i don't see any more equipment not identify. and he tell me (screen2)

    512152612_Sanstitre.thumb.png.62fb9290264e48ed53930e80f8349964.png

    my question is how can i solved red and blue arrow?

    and if its possible to change Iteminfo.lua with Notepad++ because with Notepad i see unknown charactere and if i change anything with notepad many item ingame bugged because>unknown character in notepad

    467078684_Sanstitre2.thumb.png.6ba8930b3576d5eb73a0627652f0ec59.png

    Thx for your repply ^^

     

    i'm suggest you to use zack dreaver iteminfo

    here the link https://github.com/zackdreaver/ROenglishRE

    check on system folder

  8. On 10/16/2018 at 1:19 AM, Claire said:

     

    hi om, ini saya langtype 1 knp error ya kalau dibuka clientnya? soalnya pas langtype 0 ttp ga kepakai GM Clothes nya..

    Ini sclientinfo.xml saya, disini saya rubah lagi jadi 0. Atau mungkin ada script yg salah?

    <?xml version="1.0" encoding="euc-kr" ?>
    <clientinfo>
    	<desc>Ragnarok Client Information</desc>
    	<servicetype>america</servicetype>
    	<servertype>primary</servertype>
    	<connection>
    		<display>[RE] RO OFFLINE - Carry</display>
          		<address>127.0.0.1</address>
          		<port>6900</port>
          		<version>55</version>
          		<langtype>0</langtype>
    		<registrationweb>https://rathena.org/board/</registrationweb>
    		</loading>
    		 <yellow>
    		 <aid>
    		<admin>2000000</admin>
                   </yellow>
    		<loading>
    		
    			<image>loading00.jpg</image>
    			<image>loading01.jpg</image>
    			<image>loading02.jpg</image>
    			<image>loading03.jpg</image>
    			<image>loading04.jpg</image>
    			<image>loading05.jpg</image>
    			<image>loading06.jpg</image>
    		
       	</connection>
    </clientinfo>

     

    pakai client versi berapa?

    untuk yang sudah pakai sclientinfo.xml setau saya langtypenya di set 0

  9. On 10/9/2018 at 6:45 PM, Quesooo said:

    As the tittle said 

     

    can i request a savealoot and loadaloot command 

     

    thank you masters

    Only for allotid not include @autoloot like before

    so call @save to input all item you want to save

    and then load it using @load

    -	script	AutoSetting	-1,{
    	end;	
    	
    OnLoadcommand:
    		if (auto_settings & 1 << 0) atcommand "@alootid +"+auto_settings_alid_1;
    		if (auto_settings & 1 << 0) atcommand "@alootid +"+auto_settings_alid_2;
    		if (auto_settings & 1 << 0) atcommand "@alootid +"+auto_settings_alid_3;
    		end;
    
    	
    OnSavecommand:
    	while(1) {
    		switch(
    			select(
    				"@alootid "+auto_settings_alid_1+" "+auto_settings_alid_2+" "+auto_settings_alid_3+" ["+((auto_settings & 1 << 1) ?"^00C000ON^000000":"^FF0000OFF^000000")+"]"
    			)
    		)
    		{
    			case 1:
    				if (auto_settings & 1 << 0) {
    					auto_settings_alid_1 = 0;
    					auto_settings_alid_2 = 0;
    					auto_settings_alid_3 = 0;
    					auto_settings = auto_settings^1 << 0;
    				} else {
    					mes "Input Item ID #1";
    					input [email protected]itemid1;
    					mes "Input Item ID #2";
    					input [email protected]itemid2;
    					mes "Input Item ID #3";
    					input [email protected]itemid3;
    					next;
    					mes $cf$;
    					mes "^808000==================================^000000";
    					mes "Item ID #1 ^0000FF"+getitemname([email protected]itemid1)+"^000000 ("[email protected]itemid1+")";
    					mes "Item ID #2 ^0000FF"+getitemname([email protected]itemid2)+"^000000 ("[email protected]itemid2+")";
    					mes "Item ID #3 ^0000FF"+getitemname([email protected]itemid3)+"^000000 ("[email protected]itemid3+")";
    					mes "^808000==================================^000000";
    					next;
    					if (select("Cancel","Ok") == 1) close;
    						auto_settings_alid_1 = [email protected]itemid1;
    						auto_settings_alid_2 = [email protected]itemid2;
    						auto_settings_alid_3 = [email protected]itemid3;
    						auto_settings = auto_settings|1 << 0;
    				}
    				break;
    		}
    	}
    	end;
    		
    OnInit:
    	bindatcmd("save",strnpcinfo(0)+"::OnSavecommand",0,99);
    	bindatcmd("load",strnpcinfo(0)+"::OnLoadcommand",0,99);
    	end;
    }

     

    • Love 1
  10. 31 minutes ago, tribal0306 said:

    "How to make autotrade/@afk characters can be recalled and not go Invisible"

    Hello i have made an src modification for @afk  using autotrade function. it is for characters to be able to be AFK when they use the command without vending.

    but from what i have seen. when you recall the AFK character it becomes invisible. how to make it so that the characters will not be invisible upon recall

    maybe you could use this

    https://rathena.org/board/files/file/3883-at-with-afk-hat-very-easy-modify/

  11. for number 5 i think you could try edit this option on conf\battle.conf

    Quote

    // Should ammo be unequipped when unequipping a weapon?
    // Official behavior is "yes".
    ammo_unequip: yes

    // Should a suitable weapon be equipped when equipping ammo?
    // Official behavior is "yes".
    ammo_check_weapon: yes

     

    • Upvote 1
  12. 6 hours ago, luizragna said:

    it's possible??

    I changed to data folder, when diff using nemo. But he don't read in the GRF

    are you mean you patch client to read data folder first using nemo

    and now your client doesn't read your GRF?

    are you already put your grf file name into data.ini

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use and Privacy Policy.