Jump to content

Aoi Tokichiro

Members
  • Posts

    34
  • Joined

  • Last visited

Posts posted by Aoi Tokichiro

  1. 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?

  2. Have you patch the appropriate source with the provided patch script?
    I can see few changes:

    1. 1 NPC Script
    2.  db/castle_db.txt
    3.  src/map/battle.c
    4.  src/map/battle.h

    If you already patched the source code, did you re-compile?

  3. 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.

    post-871-0-01017600-1406208249_thumb.jpg

  4. 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,

  5. 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...".

  6. 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.

  7. Just edit /db/re/skill_cast_db.txt

    //-- MO_EXTREMITYFIST

    271,4000:3500:3000:2500:2000,3000:2500:2000:1500:1000,0,10000,300000,0,0

    10000 = 10 seconds

    Does this will fix the '10 - 15 secs delay before you can use SP Healing potion' ?

  8. Thank you again guys.

    @jhonix

    Not a total wipe out, just a delete an item from the website only, To delete an item in game we need to edit the item_db.txt, right?

    @Jupeto

    I'm just hoping this could be done because if it can, I do believe you all just make the Flux CP into the next level which it is a control panel that can create an item directly to sql and can remove any that not needed. :)

  9. @jhonix and @Jupeto,

    I want to delete the item permenently from db. The reason why is if we can add a new item why we can't delete it? So I don't need to login my phpMyAdmin just to delete one item.

    Thank you for quick respon you guys!

    /thx

  10. it most likely wound't work as stated in his website..

    [2012-07-08] Issue with Lua-clients

    There is currently one issue that can be experienced when using OpenSetup Lua with a kRO client that uses Lua for it's settings. All settings get read and written by OpenSetup correctly, but the client does not apply them and uses defaults instead. This issue is caused by the fact that OpenSetup does not unlock the settings by setting a certain key in the registry. Bugfix is in preparation and will be released within next days.

    It'll be the best if they could able to fix it soon.

    Good thumb up!

×
×
  • Create New...