[RELEASE] Slave Pens AI! menu

User Tag List

Results 1 to 5 of 5
  1. #1
    Meltoor's Avatar Contributor
    Reputation
    146
    Join Date
    Jan 2007
    Posts
    292
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [RELEASE] Slave Pens AI!

    Ok, I've coded Slave pens in GM, but I didn't have much time to test it. Here it is!
    More to come Soon!

    Code:
    -MADE BY MELTOOR
    /********************************/
    /*    Mennu ze betrayer         */
    /********************************/
    
    global mennu_bolt = function(plr)
    {
        plr = .GetClosestPlayer(); 
        if(plr != null) 
        {
            .CastSpellOnTarget(42024, plr);
        }
    };
    global mennu_entercombat = function(plr)
    {
        .RegisterTimer(14000, mennu_bolt, 999);
        .SendYellMessage("Don't make me kill you!");
        .PlaySoundToSet(10379);
    };
    .RegisterUnitEvent(17941, 1, mennu_entercombat);
    
    global mennu_leavecombat = function(plr)
    {
        .DeregisterTimer();
    };
    .RegisterUnitEvent(17941, 2, mennu_leavecombat);
    
    global mennu_killedtarget = function(plr)
    {
        .SendYellMessage("It had to be done.");
        .PlaySoundToSet(10380);
    };
    .RegisterUnitEvent(17941, 3, mennu_killedtarget);
    
    global mennu_died = function(plr)
    {
        .SendYellMessage("I... Deserve this.");
        .PlaySoundToSet(10382);
    };
    .RegisterUnitEvent(17941, 4, mennu_died);
    
    /********************************/
    /*    Hippie the Cracker        */
    /********************************/
    
    
    global hippie_rend = function(plr)
    {
        plr = .GetClosestPlayer(); 
        if(plr != null) 
        {
            .CastSpellOnTarget(29574, plr);
        }
        .SendYellMessage("I'll cut you like an Emo!");
    };
    global hippie_water = function(plr)
    {
        .CastSpell(35008);
    };
    global hippie_janga = function(plr)
    {
        plr = .GetClosestPlayer(); 
        if(plr != null) 
        {
            .CastSpellOnTarget(31948, plr);
        }
        .SendYellMessage("Want a taste of my weed, huh?");
    };
    global hippie_entercombat = function(plr)
    {
        .RegisterTimer(80000, hippie_rend, 999);
        .RegisterTimer(10000, hippie_water, 999);
        .RegisterTimer(16000, hippie_janga, 999);
        .SendYellMessage("You won't touch my weed!");
    };
    .RegisterUnitEvent(17991, 1, hippie_entercombat);
    
    global hippie_leavecombat = function(plr)
    {
        .DeregisterTimer();
    };
    .RegisterUnitEvent(17991, 2, hippie_leavecombat);
    
    global hippie_killedtarget = function(plr)
    {
        .SendYellMessage("Who's the hippie now?");
    };
    .RegisterUnitEvent(17991, 3, hippie_killedtarget);
    
    global hippie_died = function(plr)
    {
        .SendYellMessage("NO...MY...WEED!!!");
    };
    .RegisterUnitEvent(17991, 4, hippie_died);
    
    
    
    /********************************/
    /*        Quagmirran            */
    /********************************/
    
    global quag_shock = function(plr)
    {
        plr = .GetClosestPlayer(); 
        if(plr != null) 
        {
            .CastSpellOnTarget(34352, plr);
        }
    };
    global quag_entercombat = function(plr)
    {
        .RegisterTimer(10000, quag_shock, 999);
        .SendYellMessage("Wraaagh!");
    };
    .RegisterUnitEvent(17942, 1, quag_entercombat);
    
    global quag_leavecombat = function(plr)
    {
        .DeregisterTimer();
        .SendYellMessage("Wrughha ragh raaagh aaagh!");
    };
    .RegisterUnitEvent(17942, 2, quag_leavecombat);
    I've changed to majority of the 2nd boss, Rokmar the Hippie.

    [RELEASE] Slave Pens AI!
  2. #2
    777devil777's Avatar Member
    Reputation
    66
    Join Date
    Sep 2007
    Posts
    396
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: [RELEASE] Slave Pens AI!

    Originally Posted by Meltoor View Post

    .SendYellMessage("I'll cut you like an Emo!");
    .SendYellMessage("Want a taste of my weed, huh?");
    .SendYellMessage("You won't touch my weed!");
    .SendYellMessage("NO...MY...WEED!!!");
    lawl.

    "I am a hacker, and this is my manifesto. You may stop this individual, but you can't stop us all... after all, we're all alike."

  3. #3
    Meltoor's Avatar Contributor
    Reputation
    146
    Join Date
    Jan 2007
    Posts
    292
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: [RELEASE] Slave Pens AI!

    Well... it's a "weed"-kinda boss, no?
    Weed smokes Weed, it makes sense. CANNIBALISM.
    Last edited by Meltoor; 11-10-2007 at 07:49 PM.

  4. #4
    Illidan1's Avatar Banned
    Reputation
    244
    Join Date
    Jul 2007
    Posts
    2,251
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: [RELEASE] Slave Pens AI!

    haha WEED! lol

  5. #5
    Meltoor's Avatar Contributor
    Reputation
    146
    Join Date
    Jan 2007
    Posts
    292
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: [RELEASE] Slave Pens AI!

    Cannibal weed.

Similar Threads

  1. Small Slave pens trick
    By eDioT in forum World of Warcraft Exploits
    Replies: 6
    Last Post: 09-15-2007, 05:03 AM
  2. Lock solos Heroic Slave Pens
    By Alkhara Majere in forum World of Warcraft Exploits
    Replies: 50
    Last Post: 05-22-2007, 06:51 PM
  3. Slave Pens farming
    By Katastrpohi in forum World of Warcraft Exploits
    Replies: 7
    Last Post: 05-18-2007, 02:58 PM
  4. Ancient Lichen farming (Slave Pens)
    By Wombol in forum World of Warcraft Guides
    Replies: 3
    Last Post: 03-22-2007, 11:02 AM
  5. How to: skip 3-4 groups of mobs in slave pens
    By raamoz in forum World of Warcraft Exploits
    Replies: 3
    Last Post: 02-03-2007, 07:59 PM
All times are GMT -5. The time now is 05:28 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search