Search results

  1. astralprojection

    [Plugin] @mvp

    /===== Description: ========================================= //= On boss_monster (MVP) spawn: //=   - optionally enable PVP/PK on the map //=   - optionally announce on a channel (default #system) //= On MVP death: //=   - optionally disable PVP/PK when no boss_monster MVPs remain on the...
  2. astralprojection

    Menu Pagination (Is it possible?)

    prontera,125,93,5 script test_girl 1_F_MARIA,{ mes "[List Card]"; mes "Please select from "+getarraysize(.cards)+" cards"; .@s = select(.menu$) -1; mes "You selected: "+getitemname(.cards[.@s]); close; OnInit: setarray .cards...
  3. astralprojection

    Any work in progress .....

    { Id: 12221 AegisName: "Megaphone_" Name: "Megaphone" Type: "IT_DELAYCONSUME" Buy: 2 Weight: 10 Trade: { nodrop: true notrade: true noselltonpc: true nocart: true nogstorage: true nomail: true noauction: true } Script: <" callfunc "F_Megaphone"; "> }, function...
  4. astralprojection

    Monster Mode (No Attack)

    I was trying to make my slave monster to not attack and make skills. It should just follow me.  Any help on my existing script? Thanks guys for the help. @monster = monster(strnpcinfo(NPC_MAP), 0, 0, "Happy "+getmonsterinfo( getd("."+getarg(0)+"[3]"),MOB_NAME), getd("."+getarg(0)+"[3]")...
  5. astralprojection

    NST_MARKET Help!

    Is there way to change currency from zeny > cash? Any help is greatly appreciated. Thank you all!
  6. astralprojection

    Ankle Snare don't work after update

    PRE-RE, 1. place trap 2. lure mob to the trap. it did not catch or hold a mob, can somebody confirm this?
  7. astralprojection

    Script : setzone (map$,zone_name);

    i have been reading the entire script command and not able to find this. i hope anyone could help me out on this.
  8. astralprojection

    MvP Controller

    //===== Hercules Script ====================================== // MVP Spawn Controller //===== By: ================================================== // astralprojektion //===== Current Version: ===================================== // 1.3 //===== Description...
  9. astralprojection

    ItemSkill Nasty Bug

    Still getting this nasty unknown HERC itemskill bug. Still not able to identify how to simulate. PRE-RE - Using flywing, butterfly wing or other consumable dont function but deduct item from inventory. I hope it will be fix, its been long time experience this issue with players.
  10. astralprojection

    Custom Healing Item ** no visual effect **

    Been looking but i cant figure this out. 1. I made a custom ID of WHITE_POTION > WHITE_POTION_F and copy the script. 2. the healing actually works but i missed that white potion visual effect when you use the item. I hope someone can help me out.
  11. astralprojection

    SQL: INSERT, Update if not exist

    @AnnieRuru i was trying to make some mod on your script VIP SYSTEM. I want to prevent inserting new record for  same char_id each time it expire and avail again. The query_sql seems not update the record. thanks :D CREATE TABLE `vip_system` ( `char_id` int(11) unsigned NOT NULL...
  12. astralprojection

    Client Support Before 2012-04-10

    Been trying hard to use client version before 2012-04-10 as these clients uses old character creation. Does anyone here success with this client build on the latest Herc?   20120222 - (map) Unhandled packet 0x0945 (length 19) 20120229 - (map) Unhandled packet 0x0945 (length 19) 20120320 -...
  13. astralprojection

    Bound Items <color>

    where can i possible change the color of bound items?
  14. astralprojection

    Party Share Bonus

    // exp share and added zeny share [Valaris] static int party_exp_share(struct party_data *p, struct block_list *src, unsigned int base_exp, unsigned int job_exp, int zeny) { struct map_session_data* sd[MAX_PARTY]; unsigned int i, c; nullpo_ret(p); nullpo_ret(src); // count the number of...
  15. astralprojection

    @refresh prevent removal of status ailment.

    Is there way to prevent @refresh to clear status ailment?  for instance, SC_BLIND, It become useless to be blinded because it can be remove by @fresh.
  16. astralprojection

    Trader: Disable Merchants Discount

    @Dastgir there are instance where server can place trader merchant where no merchant discount is allowed. It will be helpful if you can have time to look into it as plugin like sellitem Apple,100,bolean;  Thanks sir
  17. astralprojection

    PvP Respawn

    Good day Hercules Community, may i ask where to find code regarding you respawn to savepoint after 2 kills at PvP maps.  I would like to remove the code as player respawn to save point after killed 2 times on PK maps.
  18. astralprojection

    Trigger OnMobDrop Event

    Is there a way to trigger on ion mob drop a specific item? - scrip    itemdrop   -1,{ end; OnMobDrop:      If(nameid = 601)      dispbottom "Monster dropped ^+getitemname(601):      end; }
  19. astralprojection

    Pick item from array

    - script test -1,{ setarray(.@newarray, &lt;pick 10 items from .@mission[1]); mes("Your missions are;"); mes("Mission 1: "+.@newarray[1]; mes("Mission 2: "+.@newarray[2]; mes("Mission 3: "+.@newarray[3]; mes("Mission 4: "+.@newarray[4]; mes("Mission 5: "+.@newarray[5]; mes("Mission 6...
  20. astralprojection

    How to enclose qoutation to string variable

    -&lt;tab&gt;script&lt;tab&gt;test#dumb&lt;tab&gt;HIDDEN_NPC,1{ end; OnWarp: input .@playername$; atcommand "#warp "+.@playername$+" "+.arena_map$+" 22 50"; end; OnInit: bindatcmd("warpthisdumbplayer","test::OnWarp",0,99); .arena_map$ = "guild_vs2"; end; } I was hoping to do (...
Back
Top