Jump to content

Elsa Mist

Members
  • Posts

    387
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by Elsa Mist

  1. // ------------------------------------------------------------------------------- // Script Name : Headgear to Costume converter >> Costume to Headgear converter // ------------------------------------------------------------------------------- // Description : // - Allows a user to convert the equipped headgear (on Top, Mid or Low) into a // costume item. It will remove any card and refine of the Item. // - Allows a user to restore the equipped costume headgear (on Top, Mid or Low) // into its original form. It will not return any card or refine of the item. // ------------------------------------------------------------------------------- - script Costume Clown -1,{ mes "[Clown]"; mes "Here you can convert your headgears into a Costume Headgear or restore to its Original form."; switch(select("I want to convert.:I want to restore.:No thanks.")) { case 1: next; mes "Please, select what to convert."; mes "Remember, cards and refine will be removed."; next; setarray .@Position$[1],"Top","Mid","Low","Garment"; setarray .@Position[1], EQI_HEAD_TOP, EQI_HEAD_MID, EQI_HEAD_LOW, EQI_GARMENT; set .@Menu$,""; for( set .@i, 1; .@i < 6; set .@i, .@i + 1 ) { if( getequipisequiped(.@Position[.@i]) ) set .@Menu$, .@Menu$ + .@Position$[.@i] + "-" + "[" + getequipname(.@Position[.@i]) + "]"; set .@Menu$, .@Menu$ + ":"; } set .@Part, .@Position[ select(.@Menu$) ]; if( !getequipisequiped(.@Part) ) { mes "[Clown]"; mes "You are not wearing anything there."; close; } mes "[Clown]"; mes "You want to Costume your " + getitemname(getequipid(.@Part)) + "?"; next; if( select("Yes, proceed:No, I am sorry.") == 2 ) { mes "[Clown]"; mes "Need some time to think about it, huh?"; mes "Alright, I can understand."; close; } costume .@Part; // Convert the Headgear mes "[Clown]"; mes "Done, enjoy your costume headgear."; close; case 2: next; mes "Please, select what to restore."; mes "Remember, I will only restore it back without refine and cards."; next; setarray .@Position$[1],"Top","Mid","Low", "Garment"; setarray .@Position[1], EQI_COSTUME_HEAD_TOP, EQI_COSTUME_HEAD_MID, EQI_COSTUME_HEAD_LOW, EQI_COSTUME_GARMENT; set .@Menu$,""; for( set .@i, 1; .@i < 6; set .@i, .@i + 1 ) { if( getequipisequiped(.@Position[.@i]) ) set .@Menu$, .@Menu$ + .@Position$[.@i] + "-" + "[" + getequipname(.@Position[.@i]) + "]"; set .@Menu$, .@Menu$ + ":"; } set .@Part, .@Position[ select(.@Menu$) ]; if( !getequipisequiped(.@Part) ) { mes "[Clown]"; mes "You are not wearing anything there."; close; } mes "[Clown]"; mes "You want to restore your " + getitemname(getequipid(.@Part)) + "?"; next; if( select("Yes, proceed:No, I am sorry.") == 2 ) { mes "[Clown]"; mes "Need some time to think about it, huh?"; mes "Alright, I can understand."; close; } .@a = getequipid(.@Part); delitem .@a,1; getitem .@a,1; mes "[Clown]"; mes "Done, enjoy your restored headgear."; close; case 3: mes "[Clown]"; mes "Very well. Return at once if you seek my services."; close; } } // -------------------------------------------------------------------------- // Use duplicates to put your npc on different cities // -------------------------------------------------------------------------- prontera,155,181,4 duplicate(Costume Clown) Costume Clown#1 715 We having a change on our constant. Please use script above.
  2. This is mobs from Faceworm Nest instance and we still didnt have it.
  3. We dont use SVN anymore...
  4. That link provide clean kRO Only. Same like the one you get from RMS.
  5. Do you using custom box or just duplicate the existing box? If you are using custom box sprite, can you drag the box inside your inventory? If you geting the crash while drag, thats mean your custom box sprite missing some .bmp file or the .spr & .act file are corrupt. If you can drag it, your custom box is ok. Make sure all item in the list of IG_HatBox is exist in your database and at your client side, try @item all the item first.
  6. Normally, people work on texture with 586 to avoid black spot in-game.
  7. ordeal_1-2,0,0,0 script Gold Room -1,{ OnInit: //No. of Mine Guardian. //For golden peko it is default to 100 and 4 seconds~2 seconds spawn rate. set .guardian,100;
  8. https://github.com/rathena/rathena/blob/master/src/common/mmo.h
  9. You can learn to use photoshop. Its easy.
  10. i'm using client 2010 sir. ow okay but i think the issue here is you are using the costume feature, try going for a headgear slot not in costume i don't know if it works for your client thus its an old one and idk if costume is available on that client didnt see the part that you are saying that you using 2010 client. change your client date, use 2013 onward.
  11. have you try change to the older version of GIT? Change the client date? everything?
  12. Search Restricted script made by Emistry.
  13. Elsa Mist

    Instances

    The reason is, rA dont want to implement thing that didnt have accurate details of the content. Of course rA know thats was official instances, lol.
  14. No support on this thread please. rAthena → Community → rAthena General
  15. That's actually one of my scripts Thank you Skorm for the script.
  16. This might be client issue? What client date did you use?
×
×
  • Create New...