Jump to content

Radian

Members
  • Posts

    1546
  • Joined

  • Last visited

  • Days Won

    19

Everything posted by Radian

  1. Hi everyone I am using this source modification by Cydh here: http://rathena.org/board/topic/83569-delay-to-use-command/ the warning message is... atcommand.c: In function ‘is_atcommand’: atcommand.c:10196: warning: too many arguments for format what i did was change this sprintf(output,"You must wait %d seconds to use command again.",DIFF_TICK(sd->canusecommand_tick,gettick())/1000.); into this sprintf(output,"You must wait before you can use the command again.",DIFF_TICK(sd->canusecommand_tick,gettick())/1000.);
  2. How can i set multiple items with multiple choices? for example. If player have item 501 or 502 or 503 then he can choose what he/she wants to trade with it.?
  3. just follow what the error and warning says. you can see the direction db/produce_db.txt check line 425 disable it. ( this is for the error ) and for the warning part look for the pet_db.txt inside your trunk/db/... and search for those ID#. disable it. Ah okay thank you very much Another question. Where can I get past SVN that is a pre-renewal emulator. Coz I want that old SVN, for example, about the skill Clashing Spiral its damage will be based on what is the weight of the spear. Or is there a way I can make it in the latest SVN. you can disable the renewal mechanics on the trunk/src/config/renewal.c
  4. just follow what the error and warning says. you can see the direction db/produce_db.txt check line 425 disable it. ( this is for the error ) and for the warning part look for the pet_db.txt inside your trunk/db/... and search for those ID#. disable it.
  5. I think like this? - script TipOftheDay -1,{ OnPCLoginEvent: switch(rand(1,3)) { case 1: mes "[ Tip Of the Day 1]"; end; case 2: mes "[ Tip Of the Day 2 ]"; end; case 3: mes "[ Tip Of the Day 3 ]"; end; } end; }
  6. Radian

    Bug Exploit

    What emulator are you using? eAmod?
  7. ToZorMan dude. your work are awesome! i bought you a coffe for your work.
  8. I think i saw this hat already recolored by the Topic Creator. just review the post.
  9. In my offline server also got this error sometime and it was because my custom item description.. Try to look into that if you have custom item... That's the problem. i dont have a alot of custom items. I search for it on my db2 and nothing. everything is fine. And it will make easy for us owners to solve this warning if it will specifically show what is the ID# of causing this error.
  10. Radian

    WoE script

    You can get it here https://github.com/rathena/rathena/blob/master/npc/custom/woe_controller.txt setting the time in game.
  11. I'm using the same date client you got. please check each detail of the sprite.
  12. Hey Thanks for your Reply man! unfortunately, I've tried to change it to small letters, but same error, tried to change resname but shows the same error, made resname and sprite small letters still error. I'm not sure why it's reading small letters instead of what I put in resname, Plus, when I change resname to small letters the viewid still works on male characters. I encounter this kind of problem the last time i add some custom items. working 100% on Male but making error on Female. all you need to do is to rename all the sprites. and what client are you using by the way?
  13. You can ask your Hosting Company or Ask for support, and can you show the errors?
  14. [Debug]: mapindex_id2name: Requested name for non-existant map index [0] in cache. [Debug]: mapindex_id2name: Requested name for non-existant map index [0] in cache. I think its already stated. are you using a custom MAP on your sever?
  15. you can spot the difference between the sprite for Female and the Captalization of the words. You can see the error it was small letters.
  16. I have a suggestion since, we are not perfect. but please when something like this happens its kinda annoying. I know it's my fault but im just a concern citizen. please make a solution for this. and i am willing to pay for it if its required. why not display what is the ID# of the item thats causing this warning. setting the server on pre renewal mechanics some item effect on the pre_renewal database are based on renewal. Example [Warning]: pc_bonus: the Item Name(ID#) got an unknown type 0 -5 !
  17. Its on Diffing your client. and disable those things. by the way what client date are you using?
  18. Yea, replace this part .@amount2 = (.@amount * .NP); .@points = (#KAFRAPOINTS); if (.@amount2 > .@points) { mes .NPC$; mes "You do not have enough points!"; close; } if (#KAFRAPOINTS == 0) { mes .NPC$; mes "You have 0 kafra points!"; close; } mes .NPC$; mes "Here you go!"; set #KAFRAPOINTS,#KAFRAPOINTS - .@amount2; getitem .ID,.@amount; close; into this .@amount2 = (.@amount * .NP); .@points = (#CASHPOINTS); if (.@amount2 > .@points) { mes .NPC$; mes "You do not have enough points!"; close; } if (#CASHPOINTS == 0) { mes .NPC$; mes "You have 0 kafra points!"; close; } mes .NPC$; mes "Here you go!"; set #CASHPOINTS,#CASHPOINTS - .@amount2; getitem .ID,.@amount; close;
  19. npc\guild\agit_controller.txt npc\guild2\agit_start_se.txt this scripts are for automated WOE. the reason that you need to disable this are you are using a custom controller for your WOE schedules and castles. uncommenting this will not affect the Breaker announcer on the agit_main.txt
  20. can you show the script you are using?
×
×
  • Create New...