Jump to content

Emistry

Forum Moderator
  • Posts

    10018
  • Joined

  • Days Won

    408

Everything posted by Emistry

  1. our client is based on KRO not Russian RO or other.. >.< like Brian mentioned 2 time at above edi.. KRO didnt support it...most probably..we wont have this feature....unless you do it at your own~
  2. to delete the waiting room...use this *delwaitingroom {"<NPC object name"}; This command will delete a waiting room. If no parameter is given, it will delete a waiting room attached to the NPC object running this command, if it is, it will delete a waiting room owned by another NPC object. This is the only way to get rid of a waiting room, nothing else will cause it to disappear. It's not clear what happens to a waiting room if the NPC is disabled with 'disablenpc', by the way. to create back the waitingroom use this.. *waitingroom "<chatroom name>",<limit>{,<event label>,<trigger>,<required zeny>,<min lvl>,<max lvl>}; This command will create a chat room, owned by the NPC object running this script and displayed above the NPC sprite. The maximum length of a chat room name is 60 letters.The limit is the maximum number of people allowed to enter the chat room. If the optional event and trigger parameters are given, the event label ("<NPC object name>::<label name>") will be invoked as if with a 'doevent' upon the number of people in the chat room reaching the given triggering amount.
  3. @TS... please ensure you update your post as i mentioned in your Inbox... otherwise i will remove your topic....as your topic show nothing to us... please use the following site as your image host site...and not Facebook... ImageShack PhotoBucket ImgUr and there is alot more... But Not FACEBOOK...facebook is not a image hosting site..but just a social network site..
  4. ....rAthena will just auto add in those stuff when they think it is the time... so there is no need to keep on asking when will they implant all this things... just keep track of the newest svn update / changelog then you will know when they updated it with those things...
  5. are you refer to this ?? *setnpcdisplay("<npc name>", "<display name>", <class id>, <size>) *setnpcdisplay("<npc name>", "<display name>", <class id>) *setnpcdisplay("<npc name>", "<display name>") *setnpcdisplay("<npc name>", <class id>) Changes the display name and/or display class of the target NPC. Returns 0 is successful, 1 if the NPC does not exist. Size is 0 = normal 1 = small 2 = big.
  6. i guess this topic's warper would fit your request better than your current one.. http://www.eathena.ws/board/index.php?showtopic=278123
  7. 637 downloads

    Enable Account with GM Level 20 and above ( default ) to have extra slot for Storage. the GM Level are configurable in the diff.. Original Post Link http://www.eathena.w...dpost&p=1496268 made by AnnieRuru at eAthena
    Free
  8. File Name: Normal + VIP Storage File Submitter: Emistry File Submitted: 01 Mar 2012 File Category: Source Modifications Content Author: AnnieRuru Enable Account with GM Level 20 and above ( default ) to have extra slot for Storage. the GM Level are configurable in the diff.. Original Post Link http://www.eathena.w...dpost&p=1496268 made by AnnieRuru at eAthena Click here to download this file
  9. File Name: RentItem2 File Submitter: Emistry File Submitted: 01 Mar 2012 File Category: Source Modifications Content Author: Brian A Script command that extent the usage of rentitem it work just like item2 command..but with rental period. *rentitem2 <item id>,<time>, <identify>,<refine>,<attribute>,<card1>,<card2>,<card3>,<card4>; *rentitem2 "<item name>",<time>, <identify>,<refine>,<attribute>,<card1>,<card2>,<card3>,<card4>; original post link : http://www.eathena.w...1 Click here to download this file
  10. Version 2.0

    412 downloads

    A Script command that extent the usage of rentitem it work just like item2 command..but with rental period. *rentitem2 <item id>,<time>, <identify>,<refine>,<attribute>,<card1>,<card2>,<card3>,<card4>; *rentitem2 "<item name>",<time>, <identify>,<refine>,<attribute>,<card1>,<card2>,<card3>,<card4>; original post link : http://www.eathena.w...1
    Free
  11. Emistry

    Help here

    i told you already when you opened a topic at filipino section.. NOT license.txt but licence.txt any put it in your RO Root folder.. =='' the folder where you put your hexed.exe
  12. @Brian are you refer to remove / clear password ? it's here.. npc/kafras/functions_kafras.txt // Set / Change / Clear Storage Password Function ==================== // getarg(0) = NPC Name, getarg(1) = Company Name function script F_SetKafCode { mes getarg(0); if(#kafra_code) { mes "Your storage is protected with a password. What would you do now?"; next; menu "Change old password -> 5000z",-, "Remove storage password -> 1000z",M_CLEAR, "Cancel",M_END; } else { mes ""+getarg(1)+" proudly presents you a new service:"; mes "Additional storage protection with a password."; next; menu "Set new password -> 5000z",M_SET, "Cancel",M_END; } mes getarg(0); mes "At first, please enter your ^0000FFold password^000000."; set @code,callfunc("F_EntKafCode"); if(@code==0 || @code != #kafra_code) { mes "Wrong password. You can't set a new password."; emotion e_hmm; goto M_END; } next; M_SET: mes getarg(0); mes "Now enter your ^FF0000new password^000000 to protect your storage from thieves."; set @code,callfunc("F_EntKafCode"); if(@code==0) { mes "The password hasn't been changed."; emotion e_hmm; goto M_END; } next; mes getarg(0); if(Zeny < 5000) goto L_ZENY; set Zeny,Zeny-5000; //set RESRVPTS, RESRVPTS + (5000/50); //hardcoded password doesn't add pts set #kafra_code,@code; mes "You've protected your storage with a secret password."; mes "Thank you for using "+getarg(1)+"."; emotion e_thx; goto M_END; M_CLEAR: mes getarg(0); mes "Please, enter your password before its removal."; set @code,callfunc("F_EntKafCode"); if(@code==0) { mes "The password hasn't been removed."; emotion e_hmm; goto M_END; } next; mes getarg(0); if(Zeny < 1000) goto L_ZENY; set Zeny,Zeny-1000; //set RESRVPTS, RESRVPTS + (1000/50); //hardcoded password doesn't add pts if(@code == #kafra_code) { set #kafra_code,0; mes "You've successfully cleared your storage password."; mes "Thank you for using "+getarg(1)+"."; emotion e_thx; } else { mes "Wrong password. We won't return your 1000z."; mes "Please, next time enter correct password."; emotion e_sry; } goto M_END; L_ZENY: mes "You don't have enough zeny."; emotion e_cash; M_END: close2; cutin "",255; end; } @Eden.. i guess you required alot of src editing and client hexing to enable that official kafra password stuff.. anyway..i dont think this type of system are really useful... the 1 who "hacked" of stolen your account..might just completely change your account setting when he mad of cant get your items form storage hahaha which result you lost your account completely instead of just items....
×
×
  • Create New...