Jump to content

Bahmut

Members
  • Posts

    382
  • Joined

  • Last visited

Everything posted by Bahmut

  1. You have to add tabs to the npc header. Change: - script healer -1,{ to: -<tab>script<tab>healer<tab>-1,{ This also goes for duplicates of npcs. You can find more infos in the rA wiki: http://rathena.org/wiki/Basic_Scripting#Duplicating
  2. http://sourceforge.net/projects/rathena/
  3. If you are using pre-re you have a lvl 999 exp table.
  4. If you are sure original ragnarok is acting different you can report it as a bug in the bugtracker: http://rathena.org/board/tracker/
  5. Just put your npc file in npc/custom/ and then add a new line to your npc/scripts_custom.conf like this: npc: npc/custom/yournpcnamehere.txt And it seems like you want to add a new warper. rAthena already has a really good custom one you can activate it just but changing this line: //npc: npc/custom/warper.txt to this: npc: npc/custom/warper.txt in the npc/scripts_custom.conf file. For more information you can look in to the wiki: http://rathena.org/wiki/Adding_a_Script (Ignore the client side part)
  6. I think rA is not supporting clients this new right now so you have to wait until someone releases the packet_db entries for it or use a client a little bit older.
  7. I've tested the tool on fRO (Got Renewal and the new clients now) and it's working perfectly for getting the NPC texts. Thanks Yommy for this great tool.
  8. Bahmut

    Script Bug

    You can try some other langtypes or use JoWei's solution:
  9. Bahmut

    Script Bug

    Or you could switch your langtype in your clientinfo.xml
  10. First this is the wrong section and please describe when this error is happening. What have you done to provoke it and so on.
  11. Ich bin mir nicht sicher ob rA überhaupt ohne passwort arbeiten kann. Füg einfach ein Passwort für deine Datenbank ein dann dürfte es gehen, weil er versucht mit passwort zu connecten: [sql]: Access denied for user 'root'@'localhost' (using password: YES)
  12. Bahmut

    help

    What? Please be more descriptive about your problem else we can not help you.
  13. http://rathena.org/board/topic/60909-antibot/page__hl__antibot
  14. And Malaya Port maps and warps are in rA but there are no NPCs because they are not coded yet so you have to wait until someone creates and release them.
  15. Just change this: log_gm_db: log/atcommandlog.log log_branch_db: log/branchlog.log log_chat_db: log/chatlog.log log_mvpdrop_db: log/mvplog.log log_npc_db: log/npclog.log log_pick_db: log/picklog.log log_zeny_db: log/zenylog.log //log_gm_db: atcommandlog //log_branch_db: branchlog //log_chat_db: chatlog //log_mvpdrop_db: mvplog //log_npc_db: npclog //log_pick_db: picklog //log_zeny_db: zenylog to this: //log_gm_db: log/atcommandlog.log //log_branch_db: log/branchlog.log //log_chat_db: log/chatlog.log //log_mvpdrop_db: log/mvplog.log //log_npc_db: log/npclog.log //log_pick_db: log/picklog.log //log_zeny_db: log/zenylog.log log_gm_db: atcommandlog log_branch_db: branchlog log_chat_db: chatlog log_mvpdrop_db: mvplog log_npc_db: npclog log_pick_db: picklog log_zeny_db: zenylog in conf/log_athena.conf It also states this in the conf file: // Logging files/tables // Following settings specify where to log to. If 'sql_logs' is // enabled, SQL tables are assumed, otherwise flat files.
  16. I really like it. I think after you have a stable version I will look into it and maybe switch from FluxCP. Is this CP able to read a ragnarok client structure for the item database, character preview (seems like you want to show the character with items later) and such things? Because the converting of all the custom ragnarok client files to use them in FluxCP is kind of annoying. So it would be nice if I can just upload my Unpacked (or packed) custom grf to the webspace and it's reading everything by itself. Just a suggestion.
  17. Man könnte auch einfach einen fRO Clienten hexen. Dieser kann Eng, Deu und Fr. Das wählt man beim start aus. fRO bekommt auch übermorgen Renewal und hat somit teils die neuen files etc.
  18. You mean multiple windows? This is normaly deactivated you can only activate it by diffing.
  19. I think that's because of the new Renewal Monster Stats Client Crash means you are doing something wrong. Maybe Lua? I think that's because of the new Renewal Monster Spawns You can change this in /db/re/item_trade.txt That's because you are using the new map in your client and rA is using the old map on the server. To fix this just add the old map to your custom grf or data folder (http://rathena.org/board/files/file/2392-old-izlude-and-alberta/)
  20. First I do not recommend you to open a public server without the proper knowlege about the server software, configurating a webserver and so on. I would recommend you to create a local server on your system and then learn from it. If you just want to play with your friends use tunngle or hamachi it's saver and does not require a root server. In the rAthena Wiki you will find lots of guides on how to configure your server and many other things. Here is a basic guide on how to setup a local server: http://rathena.org/b...private-server/
  21. Remove the next from this block: Llad: next; for( set .@x,0; .@x<=9; set .@x,.@x+1 ) { mes "^0000FF"+(.@x+1)+".^000000 "+.@name$[.@x]+" - ^FF0000"+.@count[.@x]+"^000000 Point(s)"; } // .@x starts at 0, but you want to start with '1st', so use (.@x+1) close; It should look like this: Llad: for( set .@x,0; .@x<=9; set .@x,.@x+1 ) { mes "^0000FF"+(.@x+1)+".^000000 "+.@name$[.@x]+" - ^FF0000"+.@count[.@x]+"^000000 Point(s)"; } // .@x starts at 0, but you want to start with '1st', so use (.@x+1) close; And the ladder starts to count after you have added the code mentioned in the other thread:
  22. You could create an extra group without any commands and then use: atcommand "@adjgroup <group id>"; and reset it after finishing your stuff.
  23. Nope it's using sql for saving the faction and stuff. Also rAthena has no txt server anymore.
  24. i didnt add support for old clients yet, i will add this soon but really i wanted people to help with the project. Cool I will wait then and sorry but I haven't got the skills to help you
×
×
  • Create New...