Jump to content

Rebel

Members
  • Content Count

    148
  • Joined

  • Last visited

  • Days Won

    7

Everything posted by Rebel

  1. Rebel

    Token Quest Shop

    // 10^3, 10^4, 10^5 @type += 6; // So we can use pow later to determine the qt of Zeny @prize = (10 ** @type); @fnlprize = @prize * 5; then change Zeny += @prize; -- to -- Zeny += @fnlprize;
  2. db/pre-re/skill_db.conf db/re/skill_db.conf SkillInstances: Skill instances (int, defaults to 0) (can be grouped by Levels) Notes: max amount of skill instances to place on the ground when player_land_skill_limit/monster_land_skill_limit is enabled. For skills that attack using a path, this is the path length to be used.
  3. Make sure battleground queue is running before using @bgmode. If you want to run only BG Rush mode.. check your script and just enable the BG Rush mode.
  4. Rebel

    Soul Linker NPC

    prontera,161,185,4 script Linker 4_M_ROTERT,{ set .@n$,"[ ^0000FFLinker^000000 ]"; set .@time, 300000; // the buff last 5 minutes set @zenycost,600000; mes .@n$; mes "Hello "+strcharinfo(0)+",do"; mes "You want me to Soul Link you?"; switch(select("Yes", "No")) { case 1: if(Zeny < @zenycost) goto l_nozeny; set Zeny,Zeny - @zenycost; switch ( BaseJob ) { case Job_Alchemist: set .@spirit, 445; break; case Job_Monk: set .@spirit, 447; break; case Job_Star_Gladiator: set .@spirit, 448; break; case Job_Sage: set .@spirit, 449; break; case Job_Crusader: set .@spirit, 450; break; case Job_SuperNovice: set .@spirit, 451; break; case Job_Knight: set .@spirit, 452; break; case Job_Wizard: set .@spirit, 453; break; case Job_Priest: set .@spirit, 454; break; case Job_Bard: case Job_Dancer: set .@spirit, 455; break; case Job_Rogue: set .@spirit, 456; break; case Job_Assassin: set .@spirit, 457; break; case Job_Blacksmith: set .@spirit, 458; break; case Job_Hunter: set .@spirit, 460; break; case Job_Soul_Linker: set .@spirit, 461; break; default: if ( Upper == 1 && BaseLevel < 70 ) set .@spirit, 494; } if ( .@spirit ) { sc_start4 SC_SOULLINK, 360000, 5, .@spirit,0,0; skilleffect .@spirit, 5; } case 2: mes .@n$; mes "Okay,goodbye!"; close; } l_nozeny: mes .@n$; mes "You need 600,000 Zeny for a Soul Link."; close; }
  5. Rebel

    FAILED ASSERTION

    double check all your custom items bonuses..
  6. Should be, count += (map->addflooritem(bl, &item_tmp, 1, m, mx, my, 0, 0, 0, 4, false) != 0) ? 1 : 0;
  7. That happens to me sometimes and the problem is there are bonuses inserted in my custom items that are not available or different in hercules.
  8. tested it just now and its bugged.. you should open an issue in dastgir github..
  9. Have you put the Zeny and Cash in the item_db2.conf? /** * Add Following 2 Entries to item_db2.conf for Extended Vending System */ { Id: 30000 AegisName: "Zeny_" Name: "Zeny" Type: 3 Sell: 10 Weight: 10 }, { Id: 30001 AegisName: "Cash_" Name: "Cash" Type: 3 Sell: 10 Weight: 10 },
  10. Rebel

    @PK Command

    Check here: https://github.com/dastgir/HPM-Plugins
  11. Here. 2008-01-02a-v11.1.0.1-pv9.rar
  12. Im using 2013-08-07 client and it doesnt have a Rodex Mail.. how can I use your script with just getitem and not rodex_sendmail?
  13. Hercules Version I used is in my post. Also I do reload the scripts. I used the latest Stable version of Hercules and change only the .faileddestroy variable and nothing else. So it runs without modifications but still experiencing that bug. If you have time, you can try to reproduce it just like in the image. Thanks!
  14. Card Remover Settings is set to: set .faildestroy,0; // Should the card remover have a chance of failure that destroys items? 1 = Yes, 0 = No. It says failed to remove the cards. However, both the item and cards are still okay. So basically, I can still decard it right. But this happen when you talk again to the Old Wise Woman. You can see that the weapon has 2 Fabre Cards but Wise Old woman says there are no cards compounded. I use @refresh and this happen.. The cards are gone. Like gone, GONE! Tested in latest stable commit : d89690f Thank you .. I know this is custom script, but I appreciate if someone can help me fix this.
  15. Anyone don't have answer to this topic? Its been 4 years.
  16. How can I show the Normal pvp counter and rank display even when in PK Mode.. Where can I edit in src? Image shown is pk_mode: 0 // conf/map/battle/misc.conf If i change to pk_mode: 1 // Normal pvp counter and rank display are disabled as well.
  17. Requesting to update sellitem2 to support custom currency @Dastgir
  18. Pre-RE will the ATK will decrease when you wear a bow? is it normal? enlighten me pls. thanks. Stat: STR 255 AGI 175 VIT 113 INT 3 DEX 130 LUK 1
  19. Rebel

    Wearing any type of Bow

    Pre-RE Question lang.. may bawas ba sa ATK kapag nagsusuot ng bow? Normal po ba yan? Stat: STR 255 AGI 175 VIT 113 INT 3 DEX 130 LUK 1
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.