Jump to content

Radian

Members
  • Posts

    1546
  • Joined

  • Last visited

  • Days Won

    19

Everything posted by Radian

  1. The informations about langtypes in clientinfo is here https://rathena.org/wiki/Clientinfo.xml
  2. In this part try changing it to the exact rate of what you put in your exp.com setarray .Modifier[0], // Multipliers for Base Exp, Job Exp, and Zeny rewards. getbattleflag("base_exp_rate")/100,getbattleflag("job_exp_rate")/100,60; so for example mine is 8k i did changed it like this setarray .Modifier[0], // Multipliers for Base Exp, Job Exp, and Zeny rewards. getbattleflag("base_exp_rate")/800000,getbattleflag("job_exp_rate")/800000,60;
  3. ask the creator of rAmod but im sure there is a Extended Vending System.
  4. You cant see the changes of the Matk +% when your int is 1 but if you'll add int lets say 10 then equip the shoes with the card.
  5. Thank you for the hard work rAthena development team!
  6. Thanks! It looks like nothing is wrong with it anymore and working properly.
  7. Hi community, I found this script in the forum of hercules I tested it and I wonder sometimes its giving a specific error when there's a winner. script : //===== eAthena Script ===================================== //= Run or Die ( aka. Poring Bomb Event ) //===== By: ================================================ //= AnnieRuru //===== Current Version: =================================== //= 2.1 //===== Compatible With: =================================== //= Hercules 2015-10-29 //===== Description: ======================================= //= Avoid the poring bomb at all cost ! //===== Topic ============================================== //= http://herc.ws/board/topic/11010- //===== Additional Comments: =============================== //= another script that finally has a release topic for it //========================================================== mellina,38,66,7 script Bomb Poring 98,{ if ( ( .@size = getvariableofnpc( .aidtotal, "runordie" ) ) >= 100 ) { // 100 participant max mes "["+strnpcinfo(0)+"]"; mes "I'm sorry, the room is full"; close; } if(getvariableofnpc( .start, "runordie" )) { mes "["+strnpcinfo(0)+"]"; mes "Hey would you like to join me?"; next; if(select("Join Event!:Leave Event!") == 2) end; percentheal 100, 100; warp "guild_vs5", 0,0; set getvariableofnpc( .aid[ .@size ], "runordie" ), getcharid(3); set getvariableofnpc( .aidtotal, "runordie" ), getvariableofnpc( .aidtotal, "runordie" ) +1; end; } else { mes "["+strnpcinfo(0)+"]"; mes "I am sorry event is currently off rigth now."; end; } } - script runordie -1,{ OnInit: //disablenpc "Bomb Poring"; //bindatcmd "runordie", strnpcinfo(0)+"::OnStart", 99,100; .onesec = 1000; // use for script debugging... set to 100 to make the announcement run faster end; OnStart: OnClock1000: OnClock2100: deletearray .aid; .aidtotal = 0; mapwarp "guild_vs5", "mellina", 85,84; killmonsterall "guild_vs5"; .start = 1; announce "Bomb Poring event is on!",bc_all,0xffccff; sleep 4 * .onesec; announce "To participate in this event (@je)!",bc_all,0xffccff; sleep 6 * .onesec; announce "You only have 1 minute to register on this event!",bc_all,0xffccff; sleep 20 * .onesec; announce "30 seconds left before registration is closed!",bc_all,0xffccff; sleep 10 * .onesec; announce "To participate in this event (@je)!",bc_all,0xffccff; sleep 10 * .onesec; announce "Last 10 seconds for registrations!",bc_all,0xffccff; sleep 5 * .onesec; announce "Bomb Poring : 5",bc_all,0xffccff; sleep 1000; announce "Bomb Poring : 4",bc_all,0xffccff; sleep 1000; announce "Bomb Poring : 3",bc_all,0xffccff; sleep 1000; announce "Bomb Poring : 2",bc_all,0xffccff; sleep 1000; announce "Bomb Poring : 1",bc_all,0xffccff; sleep 1000; announce "Event is now closed.",bc_all,0xffccff; if ( .aidtotal < 2 ) { // cannot start event if nobody joins(0) or just having (1) player announce "Bomb Poring is canceled not enough players to continue!",bc_all,0xffccff; mapwarp "guild_vs5", "mellina", 85,84; deletearray .aid; .aidtotal = 0; .start = 0; end; } mapannounce "guild_vs5", "Welcome Bomb Poring!",bc_map,0xffccff; sleep 3 * .onesec; mapannounce "guild_vs5", "To the players don't know this event, It its very simple!",bc_map,0xffccff; sleep 3 * .onesec; mapannounce "guild_vs5", "You just need to stay AWAY from anything that you think its DANGEROUS!!",bc_map,0xffccff; sleep 3 * .onesec; mapannounce "guild_vs5", "Stay alive no matter what!",bc_map,0xffccff; sleep 3 * .onesec; mapannounce "guild_vs5", "The LAST SURVIVOR will be the WINNER",bc_map,0xffccff; sleep 3 * .onesec; mapannounce "guild_vs5", "Event will start in 3....",bc_map,0xffccff; sleep 1 * .onesec; mapannounce "guild_vs5", "2...",bc_map,0xffccff; sleep 1 * .onesec; mapannounce "guild_vs5", "1..",bc_map,0xffccff; sleep 1 * .onesec; mapannounce "guild_vs5", "Start Running Now!",bc_map,0xffccff; while ( .start ) { .@more += rand(1,2); monster "guild_vs5", 0,0, "Come On Baby!!!", 1904, 2 + .@more, "", 0; monster "guild_vs5", 0,0, "Come On Baby!!!", 1904, 2 + .@more, "", 1; monster "guild_vs5", 0,0, "Come On Baby!!!", 1904, 2 + .@more, "", 2; sleep 5000; } end; OnPCDieEvent: OnPCLogoutEvent: if ( strcharinfo(3) == "guild_vs5" && .start ) { if ( .aidtotal > 1 ) { for ( .@i = 0; .@i < .aidtotal; .@i++ ) { if ( getcharid(3) == .aid[.@i] ) { deletearray .aid[.@i], 1; .aidtotal--; } } } if ( .aidtotal == 1 ) { .start = 0; killmonsterall "guild_vs5"; announce "Congratulations ~ the winner is "+ rid2name(.aid),bc_all,0xffccff; sleep 5000; if ( isloggedin( .aid ) ) { attachrid .aid; getitem 7539,10; // winner prize warp "mellina", 85,84; } deletearray .aid; .aidtotal = 0; } } end; } guild_vs5 mapflag nowarp guild_vs5 mapflag noreturn guild_vs5 mapflag nowarpto guild_vs5 mapflag noteleport guild_vs5 mapflag nosave SavePoint guild_vs5 mapflag noskill guild_vs5 mapflag nomemo guild_vs5 mapflag nopenalty guild_vs5 mapflag noicewall
  8. Your username / password should be the same of what you put in your mysql.
  9. Here https://github.com/rathena/rathena/issues/1280
  10. in game you simply do this in game @main setopt #main MessageDelay 3
  11. http://rathena.sourceforge.net/tools/diff_patcher.php?client=2010-07-30aRagexeRE i dont use this client and i think you need older files for this.
  12. Maybe try this one? https://rathena.org/board/topic/105732-convert-any-headgeargarment-to-costume/
  13. @Stolao I think rathena change this into something https://github.com/Stolao/Npc_Release/blob/master/PvP_Ladder/Pvp_Ladder_v2.06.txt#L76
  14. trunk/src/config/core.h
  15. please see this Playtester explains it why. https://github.com/rathena/rathena/issues/1280
  16. Use the job_exp.txt inside the import folder. directory will be trunk/db/import/job_exp.txt base on what I know the table inside the pre-renewal is base only for official servers table.
  17. Cydh? On this part : // Allow to create a new guild (bitmask) // 0: Disable // 1: Enable via client // 2: Enable via atcommand create_guild: 2 I can still use /guild even tho i set it for 2 there is no error while compiling. maybe update for the recent rA?
  18. Because it was a paid file thats why its not available anymore.
  19. Please provide the script thank you.
  20. I remember you need the sql file for the ranking.
  21. Hi everyone Anubis-K released this source here in the forum and I did a test with it and the known bug he mentioned is true Known bugs: If you have in your inventary Bg items and normal items plus you are outside of battleground or bg_consume maps, you will not be able to use the items. Is there any chance we can fix this issue? Here is the file. Telma-for-rathena.patch
  22. I moved your topic in general support section.
×
×
  • Create New...