Jump to content

Aoi Tokichiro

Members
  • Posts

    34
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling
  • Location
    Malaysia
  • Server
    Nocturnal RO

Contact Methods

  • Skype
    aoitkr

Recent Profile Visitors

1966 profile views

Aoi Tokichiro's Achievements

Poring

Poring (1/15)

1

Reputation

  1. Check Wise Old Woman NPC, file location should be at: https://github.com/rathena/rathena/blob/master/npc/custom/card_remover.txt Change zeny cost, Star Crumb and Yellow Stone to desire item requirement. This topic should be at Request, not Support...
  2. I test just fine, use TAB at header, monster set and warps, else it wouldn't works.
  3. Use TAB at: prontera,158,192,5<TAB>script<TAB>Run Or Die<TAB>1904,{ and here: guild_vs5<TAB>mapflag<TAB>nosave<TAB>SavePoint
  4. What do you actually mean? If you want to change @ commands, you may change at conf/atcommand_athena.conf Or you just want a simple Item Signer NPC, you may find it at npc/custom/item_signer.txt I'm wrong?
  5. Have you patch the appropriate source with the provided patch script? I can see few changes: 1 NPC Script db/castle_db.txt src/map/battle.c src/map/battle.h If you already patched the source code, did you re-compile?
  6. Similar topic: http://rathena.org/board/topic/78652-disguise-suit-class/ If you mean this: Job SinX, equip Ring 1 change 'look' to Novice, AND/OR equip Ring 2 change look to Assassins. Then, you might have a problem here, else you gonna write full exception code when Ring 2 overwrites function of Ring 1. My suggestion is set with one equipment location such as Armor, Footwear or Garment.
  7. Erm, I just edited my post but oh well. Just a picture telling that my character doesn't have the specific quest-log error.
  8. OnInit doesn't require the player to click on it but give it a try on both OnInit: and OnPCLoadMapEvent.
  9. I did a quick repair on your code and it run just good in my test server but I can't test any further since my character doesn't have this NPC quest record. e_tower,78,80,2 script Endless Reset 406,{ mes "Purification Tower"; mes "Do you want to Reset your Endless Tower Quest?"; menu "Yes",R_Tower,"No",Dis; close; R_Tower: if(countitem(6127) == 1) { set .@etower_timer,0; set .@etower_timer2,0; erasequest 60200; erasequest 60201; delitem 6127,1; mes "^0000ffThe records and aftereffects related to the Endless Tower have been removed. You can generate and enter the Endless Tower again.^000000"; next; set .@etower_timer,0; set .@etower_timer2,0; erasequest 60200; erasequest 60201; mes "^0000ffThe records and aftereffects related to the Endless Tower have been removed. You can generate and enter the Endless Tower again.^000000"; close; warp e_tower,75,108; end; } else { mes "You don't have a Purification Stone to Reset your Endless Tower Quest"; close; } Dis: mes "Purification Tower"; mes "Come Back Again."; close; } The error should gone but you need to test it again. Keep this topic posted because someone might able to help you. My uploaded picture shows my character doesn't have specific quest-log and show the error. But yours should be fine.
  10. Do you actually mean you want "Job" icon hover the NPC head and only visible to novice? I believe there is no such control. You might need to see this: http://rathena.org/wiki/Showevent Or, code should looks like this: (These line are only guide or pseudo-code) OnInit: if (Class > Novice) { ... // Nothing happen? } else ShowEvent 1,1; // Show the icon to Novice close; end; I'm not sure how to code it,
  11. Similar topic: http://rathena.org/board/topic/73607-buffer-size-for-client/ I think you might need to check your SVN or make sure your client run on supported packet_ver as in https://github.com/rathena/rathena/blob/master/db/packet_db.txt For example my server-side compiled at version 45 and the client-side running 2013-08-07Ragexe.exe (Diffed). //2013-08-07Ragexe (Shakto) packet_ver: 45
  12. Add this line: announce "MaynilaRO Quest: Congratulation "+ strcharinfo(0) +"for completing this quest!",0; like this: L_FINAL2: next; mes .npcname$; mes "Brilliant! Fantastic! Here you go."; getitem .prize,1; announce "MaynilaRO Quest: Congratulation "+ strcharinfo(0) +"for completing this quest!",0; close; Change "MaynilaRO Quest etc...".
  13. Could you please post your script (NPC) here, someone might able to help.
  14. You can edit the rates at set $@brate,rand(24000,30000); set $@jrate,rand(24000,30000); set $@drate,rand(24000,30000); and change the 24000 to your desired minimum rates, 30000 to your desired maximum rates. brate = base exp rate, jrate = job and drate = drop. Check your configuration, the minimum should be higher than your default rate. (Else it is not a bonus if you get lower rate than the default, right?) Anyway, Sir Capuche giving you the custom script as you requested but you still need to add some more codes because it's incomplete.
  15. 10000 = 10 seconds Does this will fix the '10 - 15 secs delay before you can use SP Healing potion' ?
×
×
  • Create New...