Jump to content

RCharles

Members
  • Posts

    154
  • Joined

  • Last visited

Everything posted by RCharles

  1. change line 3 mes "It costs "+.Cost[1]+"x "+getitemname(.Cost[0])+" to play."; then replace line 4 for with your if condition for zeny.
  2. RCharles

    help ?

    From what I know, item_db.sql is needed if you are going to add feature such as "item search" maybe in fluxcp.
  3. checkweight(<item id>,<amount>) checkweight("<item name>",<amount>) Reference: http://rathena.org/wiki/Checkweight prontera.gat,163,185,4 script Cenverter 83,{ set @name$,"[^FF0000Converter^000000]"; mes @name$; mes "What do you want to do?"; next; switch(select("Information","Convert")) { case 1: mes @name$; mes "I can convert your Coupon/s into Berry and vice versa."; mes "1 Coupon = 500 Berry"; close; case 2: switch(select("Coupon to Berry","Berry to Coupon")) { case 1: if (checkweight(607,500) == 0 ) goto overWeight; if (countitem(7073) < 1) goto noCoupon; mes @name$; mes "How many coupon to berries?"; input .@num; if (countitem(7073 < .@num){ mes @name$; mes "Insufficient coupon!"; close; }else { delitem 7037,.@num; getitem 607,.@num*500; mes @name$; mes "There you go. Hope to see you again!"; close; } case 2: if (checkweight(7073,1) == 0 ) goto overWeight; if (countitem(500) < 1) goto noBerry; mes @name$ mes "How many berries to coupon?"; input .@num2; if (countitem(607) < .@num2){ mes @name$; mes "Insufficient berries!"; close; }else { delitem 607,.@num2*500; getitem 7037,.@num; mes @name$; mes "There you go. Hope to see you again!"; close; } } end; } noBerry: mes @name$; mes "I'm Sorry but you don't have enough berries."; close; noCoupon: mes @name$; mes "I'm Sorry you don't have enough coupon"; close; overWeight: mes @name$; mes "Sorry you're overweight."; close; }
  4. RCharles

    Ugly font

    I can see 2 solutions here: 1. Diff your own client, so you can choose which type of font will be displayed 2. Maybe langtype affects this.
  5. correct! It is just good for extracting GRF file. What I did is: - Use GRF Builder to build GRF - GRF Tool for extracting GRF
  6. Base from your topic used in as reference, it was said that its a animation delay. And I think its client side problem (im not that sure). What client version are you using?
  7. Which webhost are you using? Turn off PHP safe mode. Its best if you have authority to configure your php.ini http://support.godaddy.com/help/article/119/turning-off-php-safe-mode-on-your-server
  8. I've the same problem, any fixes?OS: Windows Vista Try Using GRF Tool from here: http://ratemyserver.net/index.php?page=download_tool It works well for me..
  9. RCharles

    APPCRASH

    I assume that you get the your diiffed client "RAthena" from "Basic RAthena Client" You have said: Why diff it? the client is already diffed. Here is the guide to create your own diffed client: http://supportmii.com/ro1/JudasBible.pdf Use this tool as well: Shin's Diff Patcher Note: Dont patch with Read Data folder first and load lua before lub
  10. getpartymember <party_id>{,<type>}; Reference: getpartymember
  11. Look into your packet_db.txt if that client is alrady supported by rAthena 1. Diff your client with Shin's Diff Patcher 2. When you diff your client don't include load lua before lub or read data folder first 3. Use lua that fits your version http://subversion.assembla.com/svn/ClientSide/Lua_Project/lubs/Lub%20Files%205.0.2/ 3. check your mmo.h #define PACKETVER 20120714 4. be sure that your packet version is packet_db_ver: 28 5. When your patching your client, make sure your use the skip packet obfuscation fix http://supportmii.com/ro1/Clients/Bypass_Clients/Waeyan/WDGSkipPacketHeaderObfuscation.dll
  12. getusers(<type>) Reference: http://rathena.org/wiki/Getusers what do you mean by?
  13. You need to edit file that correspond to your custom item: Example: If you need to change idnum2itemdesctable.txt You open that idnum2itemdesctable.txt and just add e.g 5555# A potion made from ground Red Herbs that restores ^000088about 45 HP^000000. ^ffffff_^000000 Weight :^777777 7^000000 # then load it on thor maker. What you are doing is just to use the file and just add lines if necessary.
  14. When you linked into the video, below that you can find this: Tools needed: - ChunkSpy http://luaforge.net/projects/chunkspy/ - Notepad++ http://notepad-plus-plus.org/ To block collumn in notepad++ just hold ALT+Shift+Left Mouse Button
  15. I have searched this references, I hope this will guide you: Setting Up Server W/hamachi, With Router (w/o messing with router settings) 1. http://www.eathena.ws/board/index.php?showtopic=114681 [Guide]How to setup a Ragnarok Online(Server Side Only) 2. http://rathena.org/board/topic/53291-guidehow-to-setup-a-ragnarok-onlineserver-side-only/ [guide]how To Use No-ip? (hide Your Server Ip), here's a simple instructions to use your no-ip 3. http://www.eathena.ws/board/index.php?showtopic=142274&st=0&p=782543entry782543
  16. When diffing your client using Shin's Diff Patcher it will autogenrate the required diffs needed for the client. If you check/add "Custom Windows Title" It will ask you on what would be the name in the title bar of your client.
  17. I think updated rA svn files has this already. trunk/npc/custom/jobmaster.txt check out: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/npc/custom/jobmaster.txt
  18. If im not mistaken, this feature are already included in the updated data.grf or maybe rdata.grf Do you mean palettes?
  19. RCharles

    Redeemer

    I hope this references will help you: Itemizer http://rathena.org/board/topic/64770-itemizer-solution-to-combat-gm-corruption/ Event Ticket Rewarder http://rathena.org/board/topic/60513-event-ticket-rewarder-php-log-viewer-anti-gm-corruption/page__hl__itemizer
  20. When do you create a patch? - Basically you create a patch in thor if you want to change/update/overwrite a file in your GRF - When you want to delete certain file/s There is a video guide on how to do patch using thor:
  21. I found this video tutorial for you. http://www.youtube.com/watch?feature=player_embedded&v=lfTlAT64Jb0
×
×
  • Create New...