Jump to content

Poring King

Members
  • Posts

    1017
  • Joined

  • Last visited

  • Days Won

    22

Everything posted by Poring King

  1. There is a reward on wave 10 OnWave10: set .wave1, .wave1 -1; if (.wave1 == 0) { announce "Yeehaaa !! We Beat ALL the Monster!!!",bc_map; sleep 5000; announce "Congratulation to Team [ "+getpartyname( getcharid(1) )+" ] who had just finished the Alon Event. ",0; for ( .@i = 0; .@i < $@partymembercount; .@i++ ) getitem 7227, 1, $@partymemberaid[.@i]; warpparty prontera,156,191,getcharid(1); set .AEventOpen,0; set .ARegister,0; } end;
  2. To change your packetver here at rA-Master/src/config/packets.hpp line 16 #ifndef PACKETVER /// Do NOT edit this line! To set your client version, please do this instead: /// In Windows: Add this line in your src\custom\defines_pre.hpp file: #define PACKETVER YYYYMMDD /// In Linux: The same as above or run the following command: ./configure --enable-packetver=YYYYMMDD #define PACKETVER 20180620 Select your OS then you will see the full guide to update to get to install
  3. I think that is what you are looking
  4. Use this #CASHPOINTS #KAFRAPOINTS -%TAB%cashshop%TAB%<NPC Name>%TAB%<sprite id>,<itemid>:<price>{,<itemid>:<price>...} <map name>,<x>,<y>,<facing>%TAB%cashshop%TAB%<NPC Name>%TAB%<sprite id>,<itemid>:<price>{,<itemid>:<price>...} -%TAB%pointshop%TAB%<NPC Name>%TAB%<sprite id>,<costvariable>{:<discount>},<itemid>:<price>{,<itemid>:<price>...} <map name>,<x>,<y>,<facing>%TAB%pointshop%TAB%<NPC Name>%TAB%<sprite id>,<costvariable>{:<discount>},<itemid>:<price>{,<itemid>:<price>...}
  5. Looking forward to become free and contribute to community ^_^
  6. delitem 11503,.@item_count; Do this to your 3 option
  7. Having error while updating and using a new client ? LAUNCHING CLIENT ERROR / Force Close Well the common error on this part is your system files lua or lub files is not same as you setup on your Diffing / Patching . To fix this kind of error you need to patch your unpacked client and use your specific system files name and its case-sensitive . Example : ItemInfo on diffing you should put what your System files name for item info . If your system files is using ItemInfo.lua then when diffing using nemo put ItemInfo.Lua too not "Iteminfo.lua, itemInfo.lua etc " Tools Needed : Nemo-Master After you login you will get error on Character Select The common error from this is you just dont have the file to support the character selection the basic thing to do here first is to update your KRO and Re-KRO using http://nn.ai4rei.net/dev/rsu/ Old Client Below 2018 Need to use clientinfo.xml with lang type 0 and American New Client 2018 Onwards Need to use sclientinfo.xml with lang type 1 and American Skill Tree Error Izlude Tiles Fix Geffenia Map Fix Current Translation https://github.com/llchrisll/ROenglishRE Note: All files can see at data.grf just copy and use it to your server.grf
      • 1
      • Upvote
  8. You need to tie up your system files lua/lub to your diffing/patching on your clean/unpacked client
  9. Use english because this is not filipino section Well if your client suddenly force close when launching before login section meaning you have a lua error etc . You need to update your system files and connect your system files to you client on diffing client using nemo
  10. I think there is a space is line 1 or some text check it . Much better to post your inter_server here using code box
  11. Well to be honest this is my first time to see that kind of scripting
  12. You can add a bind command to join in Global chat
  13. There is a lot of way to do that First you can make a global set when they enter then create a npc if they are ongoing in instance set #Instance,1; if (#instance = 1) goto L_ReEnter; mes "Sorry you are not allowed to go inside"; close; L_ReEnter: warp "location",x,y; end; I hope you get the idea Or you can do this on main Instance NPC if (#instance = 1) goto L_ReEnter; L_ReEnter: warp "location",x,y; end;
  14. Its be cause you put OnInit remember Oninit will do first when the server is load //================================================================// // Happy Hour Script // Created by PottScilgrim //================================================================// - script HappyHourScript -1,{ //================================================================// // Hourly Triggers //================================================================// OnInit: OnClock1400: OnClock2000: setbattleflag "base_exp_rate",1500,true; setbattleflag "job_exp_rate",1500,true; setbattleflag "item_rate_common_boss",100000,true; setbattleflag "item_rate_common_mvp",100000,true; setbattleflag "item_rate_heal_boss",300000,true; setbattleflag "item_rate_heal_mvp",300000,true; setbattleflag "item_rate_use_boss",300000,true; setbattleflag "item_rate_use_mvp",300000,true; setbattleflag "item_rate_equip_boss",100000,true; setbattleflag "item_rate_equip_mvp",100000,true; setbattleflag "item_rate_card_boss",100000,true; setbattleflag "item_rate_heal",500000,true; setbattleflag "item_rate_use",500000,true; setbattleflag "item_rate_equip",300000,true; setbattleflag "item_rate_card",500000,true; announce "[EVENT]: Happy hour has now begun, exp rates are now 22x Drop Rates are Doubled!",bc_all,0xc4ff5e; end; OnClock1500: OnClock2100: setbattleflag "base_exp_rate",1500,true; setbattleflag "job_exp_rate",1500,true; setbattleflag "item_rate_common_boss",100000,true; setbattleflag "item_rate_common_mvp",100000,true; setbattleflag "item_rate_heal_boss",300000,true; setbattleflag "item_rate_heal_mvp",300000,true; setbattleflag "item_rate_use_boss",100000,true; setbattleflag "item_rate_use_mvp",100000,true; setbattleflag "item_rate_equip_boss",100000,true; setbattleflag "item_rate_equip_mvp",100000,true; setbattleflag "item_rate_card_boss",50000,true; setbattleflag "item_rate_heal",500000,true; setbattleflag "item_rate_use",500000,true; setbattleflag "item_rate_equip",300000,true; setbattleflag "item_rate_card",500000,true; announce "[EVENT]: Happy hour has ended, exp rates have returned to normal",bc_all,0xc4ff5e; end; } Try to do this //================================================================// // Happy Hour Script // Created by PottScilgrim //================================================================// - script HappyHourScript -1,{ //================================================================// // Hourly Triggers //================================================================// OnClock1400: OnClock2000: setbattleflag "base_exp_rate",1500,true; setbattleflag "job_exp_rate",1500,true; setbattleflag "item_rate_common_boss",100000,true; setbattleflag "item_rate_common_mvp",100000,true; setbattleflag "item_rate_heal_boss",300000,true; setbattleflag "item_rate_heal_mvp",300000,true; setbattleflag "item_rate_use_boss",300000,true; setbattleflag "item_rate_use_mvp",300000,true; setbattleflag "item_rate_equip_boss",100000,true; setbattleflag "item_rate_equip_mvp",100000,true; setbattleflag "item_rate_card_boss",100000,true; setbattleflag "item_rate_heal",500000,true; setbattleflag "item_rate_use",500000,true; setbattleflag "item_rate_equip",300000,true; setbattleflag "item_rate_card",500000,true; announce "[EVENT]: Happy hour has now begun, exp rates are now 22x Drop Rates are Doubled!",bc_all,0xc4ff5e; end; OnClock1500: OnClock2100: setbattleflag "base_exp_rate",1500,true; setbattleflag "job_exp_rate",1500,true; setbattleflag "item_rate_common_boss",100000,true; setbattleflag "item_rate_common_mvp",100000,true; setbattleflag "item_rate_heal_boss",300000,true; setbattleflag "item_rate_heal_mvp",300000,true; setbattleflag "item_rate_use_boss",100000,true; setbattleflag "item_rate_use_mvp",100000,true; setbattleflag "item_rate_equip_boss",100000,true; setbattleflag "item_rate_equip_mvp",100000,true; setbattleflag "item_rate_card_boss",50000,true; setbattleflag "item_rate_heal",500000,true; setbattleflag "item_rate_use",500000,true; setbattleflag "item_rate_equip",300000,true; setbattleflag "item_rate_card",500000,true; announce "[EVENT]: Happy hour has ended, exp rates have returned to normal",bc_all,0xc4ff5e; end; OnInit: // Add your default setbattleflag here when the server restart then after the default the OnClock will initiate when the time comes. end; }
  15. Change the Variable
  16. Try to change this value input .BonusItem,0,32767;
  17. There is a damage font in download section you can try it to replace your existing damage font size
  18. Get old version of rAthena trunk that support your likings and copy the source from it and apply it to your server
  19. Try to patch your client for what you really want to be next if there is a error show us the error so we can help .
  20. Try to patch using remove error from lua etc
  21. for(.@i=0;.@i<getarraysize(.aid);.@i++){ getitem 7227,1,.aid[.@i]; // 7227, 1 pcs }
  22. No
  23. rAthena stable client is 2018 . So more than that you will support it by your own . to answer your concern . The reason why you get crash after you login its because you don't have the files to support the 2020 client feature
  24. Well i do services pero need mo private cht aq dito s rathena regarding jaan
×
×
  • Create New...