Jump to content

eJay

Members
  • Posts

    325
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by eJay

  1. eJay

    Question...

    http://rathena.org/board/topic/56749-setting-dropexp-rates/ check here.
  2. http://svn6.assembla.com/svn/ClientSide/Lua_Project/lubs/ Lub Files
  3. Proof of Donation NPC View File Find and change your desire Submitter eJay Submitted 01/05/2013 Category Utilities Video Content Author louigui  
  4. File Name: Berry Exchanger File Submitter: eJay File Submitted: 05 Jan 2013 File Category: Utilities Content Author: Jae Click here to download this file
  5. post your configuration.
  6. yes i already put in my server, Thnx anubis Problem Solve. from my r17023 i update using changeset_17024 - 17083 Hahaha so bored.
  7. - script LMS#disable -1,{ OnInit: disablenpc "Mr. Banker"; disablenpc "All Job Manager"; end; } - script LMS -1,{ OnClock4000: OnClock8000: OnClock1100: OnClock1500: OnClock1800: OnClock2200: goto startlmsevent; startlmsevent: sleep 5000; announce "neRO Manager: The Last Man Standing event will be starting shortly.",0; sleep 5000; announce "neRO Manager: Those who want to play, please proceed to Prontera and Register.",0; sleep 5000; announce "neRO Manager: After 3 Minutes the Registration will close.",0; enablenpc "All Job Manager"; sleep 55000; announce "neRO Manager: Last 2 Minutes",0; sleep 60000; announce "neRO Manager: Last 1 Minute",0; sleep 30000; announce "neRO Manager: Last 30 Seconds",0; sleep 25000; announce "neRO Manager: 5.",0; sleep 1000; announce "neRO Manager: 4.",0; sleep 1000; announce "neRO Manager: 3.",0; sleep 1000; announce "neRO Manager: 2.",0; sleep 1000; announce "neRO Manager: 1.",0; sleep 1000; announce "neRO Manager: Time's up.",0; sleep 1000; disablenpc "All Job Manager"; donpcevent "Mr. Banker::OnEnable"; stopnpctimer; end; } //---------All Job Registration--------------- prontera,156,177,5 script All Job Manager 106,{ mes "[neRO Manager]"; mes "Hello What can I do for you?"; next; menu "Register",-,"What is LMS?",what,"Leave",leave; next; if (BaseLevel < 900) goto NOLMS; mes "[neRO Manager]"; mes "Thankyou for registering Mr. " + strcharinfo(0) + ", Have fun!"; warp "force_1-3",100,180; end; what: mes "[neRO Manager]"; mes "LMS is also known as Last Man Standing Event"; next; mes "[neRO Manager]"; mes "LMS is also like a PvP."; mes "The only difference is at LMS you will get 100 Cash Point if you are the Last Man Standing at the arena."; next; mes "[neRO Manager]"; mes "That's all"; close; leave: mes "[neRO Manager]"; mes "I hope you will register next time"; close; NOLMS: mes "[neRO Manager]"; mes "Sorry Base Level 900~999 Only can enter here."; mes "please comeback later"; close; } //-------------------------- //-------------------------- force_1-3,100,180,6 script Mr. Banker 56,{ mes "[banker]"; mes "Congrats. You've won."; next; announce "neRO Manager: We have a winner! well done "+strcharinfo(0)+".",0; set #CASHPOINTS,#CASHPOINTS + 100; dispbottom "You have won 100 cash points total of = "+#CASHPOINTS+" points."; mes "You will return now"; warp "poring_w02",99,72; disablenpc "Mr. Banker"; close; end; OnEnable: pvpoff "force_1-3"; mapannounce "force_1-3","neRO Manager:The Last Man Standing Event will start shortly",0; sleep2 10000; mapannounce "force_1-3","neRO Manager:But before we start this is just a few reminders..",0; sleep2 10000; mapannounce "force_1-3","neRO Manager:Using Cloaking is strictly not allowed..",0; sleep2 10000; mapannounce "force_1-3","neRO Manager: Only the Last Man Standing will win this event!!",0; sleep2 10000; mapannounce "force_1-3","neRO Manager: What are we waiting for?..Let's Get Ready to Rumble!!...",0; sleep2 10000; goto L_Start; end; L_Start: if(getmapusers("force_1-3") == 1) goto L_Champ; if(getmapusers("force_1-3") == 0) goto L_None; if(getmapusers("force_1-3") > 1) { mapannounce "force_1-3","neRO Manager: Get ready at the count of 5 we will start!....",0; sleep2 10000; mapannounce "force_1-3","neRO Manager: 5",0; sleep2 5000; mapannounce "force_1-3","neRO Manager: 4",0; sleep2 4000; mapannounce "force_1-3","neRO Manager: 3",0; sleep2 3000; mapannounce "force_1-3","neRO Manager: 2",0; sleep2 2000; mapannounce "force_1-3","neRO Manager: 1",0; sleep2 1000; pvpon "force_1-3"; goto timer; end; } timer: initnpctimer; end; OnTimer1000: end; OnTimer1100: if(getmapusers("force_1-3") == 1) goto L_Champ; if(getmapusers("force_1-3") > 2) goto timer; if(getmapusers("force_1-3") == 2) goto champ; stopnpctimer; end; champ: announce "neRO Manager: Last 2 Brave warriors are still alive!",0; sleep2 10000; if(getmapusers("force_1-3") == 1) goto L_Champ; if(getmapusers("force_1-3") > 1) goto timer; end; L_Champ: mapannounce "force_1-3","Mr. Banker: Please talk to me to get your prize..",0; pvpoff "force_1-3"; enablenpc "Mr. Banker"; end; L_None: disablenpc "Banker"; pvpoff "force_1-3"; end; } //----- Die = warp prt ----- - script Killa_warp -1,{ OnPCDieEvent: getmapxy(.@map$,.@x,.@y,0); if(.@map$=="force_1-3") { set #kill_point, 0; warp "que_moon",34,24; atcommand "@alive "+ strcharinfo(0); end; } OnPCKillEvent: getmapxy(.@map$,.@x,.@y,0); if(.@map$=="pvp_n_1-5") { set #kill_point,#kill_point+1; if ( #kill_point % 4 == 0) { end; } } } // == Mapflags force_1-3 mapflag pvp_noguild force_1-3 mapflag pvp_noparty force_1-3 mapflag nowarp force_1-3 mapflag nowarpto force_1-3 mapflag noteleport force_1-3 mapflag nosave force_1-3 mapflag nomemo force_1-3 mapflag nobranch force_1-3 mapflag restricted 1 i don't know what is your point but try this one this is working
  8. Hello how to set the item ID to cashpoints i want to use 10 cash points
  9. Hello, for the auto close client, please visit here http://rathena.org/b...-no-auto-close/ and to hide your client from player, usually I change the extension of the file from ".exe" to ".dll", then in the patcher set the executable to "yourro.dll" so the player will need to open via patcher everytime. Hope it helps, goodluck How to change from .exe to .dll ?
  10. Hello everyone this is possible for the client that can hide or if ever the player use the client will not open unless using a client patcher, so the client will open if they using a client patcher. Another Question: Why my 2012-04-10 client when in my character select and i choose cancel/back will going close not going to log in account?
  11. are you sure that you did recompile your svn after changing this line ?
  12. NP man, any suggestions to improve? not so far. if i got any idea, i will post my suggestion.
  13. Version Version 1.1

    470 downloads

    Free
  14. This is working //====================== rAthena Script =============================================================== //=== Made by Jae //=== Recoded by: Ejay //==================== Information ==================================================================== //==== Berry to Coupon ~ Coupon to Berry //================= Version : ========================================================================= //=== Topic Link: http://rathena.org/board/topic/70148-how-to-add-checkweight-in-my-script/ //=== V 1.1 Fixed a weight checker [ eJay ] //============== Credits : ============================================================================ //=== Credits to Emistry //=== rAthena Profile Link : http://rathena.org/board/user/3300-ejay/ //===================================================================================================== //************************************************************************* poring_w02,83,101,5 script Berry Exchanger 719,{ set @name$,"[^FF0000Berry Exchanger^000000]"; mes @name$; mes "What do you want to do?"; next; switch(select("Information","Convert")) { case 1: mes @name$; mes "I can convert your Coupon/s into Berry and vice versa."; mes "1 Coupon = 400 Yggdrasil Berry"; close; case 2: switch(select("Coupon to Berry","Berry to Coupon")) { case 1: if (countitem(7037) < 1) goto noCoupon; if (checkweight(607,400) == 0 ) goto overWeight; delitem 7037,1; getitem 607,400; mes @name$; mes "There you go. Hope to see you again!"; close; case 2: if (checkweight(7037,1) == 0 ) goto overWeight; if (countitem(607) < 400) goto noBerry; delitem 607,400; getitem 7037,1; mes @name$; mes "There you go. Hope to see you again!"; close; } } end; noBerry: mes @name$; mes "I'm Sorry but you don't have enough berries."; close; noCoupon: mes @name$; mes "I'm Sorry you don't have enough coupon"; close; overWeight: mes @name$; mes "Sorry you're overweight."; close; }
  15. Sir Euphy can you make me a script, ready to insert in sql. Thanks
  16. Yeah try and try until you die, lol. i'm just kidding Good Work! man your script is useful for me. Keep it up!
  17. Haha..players is going to Rampage !! Kill for Survive !! haha Suggestion: Player will get the 5 pcs usable item that enable to use palm push strike so the 5 pcs usable item is limited to push the other player, i think this is best and funny event than killing each other.
  18. it might help you browse this topic http://rathena.org/b...isable-storage/ yeah, i know how to disable storage but, nocommand for my maintown That you can read upon here. Thanks Mysterious )
  19. can you give me a link for that The latest is always found here. That is a custom mod/file people put in their server themselves; it's not stock with rAthena's SVN. mysterious can i ask again how about latest client sorry i'm newbie here
  20. eJay

    Jungle Pront

    Yes! Thanks Olrox i'm looking too for this one
×
×
  • Create New...