Total newbs guide to PPather menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 26
  1. #1
    ~Jagris's Avatar Contributor
    Reputation
    154
    Join Date
    Apr 2007
    Posts
    1,479
    Thanks G/R
    2/2
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Total newbs guide to PPather

    I saw there wasn't a topic on this.

    What Is PPather?
    PPather is an advanced custom class, well that might be a streach.
    It's more like a new program/language to make better classes and things along those lines. It opens up WoW MPQ files to see objects and things in the way, what does this mean? NO MORE STUPID PATHS AND LOWER BANHAMMER CHANCE!!! Now I could go into depth, but that will be later.

    How to understand PPather.
    PPather code has a $ then followed by a variable, that can include and can be more: ID, NPC, Maxlevel, Minlevel, ect. Now I'm not going on a long scavenger hunt in search for all of the variables atm. Then after the $(variable) it is then follwed by usally either a number or a word or words such as, True, and False.
    It has these things to make the code easier to read.

    Harder stuff
    Now I'm being pressed for time so let me begin the 3rd part. I have found a sample code from mmoglider.com to begin with.
    Code:
    //Default task file provided by SomeoneSpecial in 0.3.1 Guide
    Par 
    {
        Defend // Lets make sure first and foremost that we defend when we are attacked. Highest Priority.
        {  
             = 0;
        }
        
        Danger // If there is a mob in our way, attack it so we can keep going. High priority.
        {  
             = 1;
             = 20; // this is just a innard note, thsi part is easy to under stand, if anything is in the away it kills it.
        }
        
        Loot
        {
             = 2;
             = False; // Set to True if you are a skinner/want to skin
        }
        Vendor
        {
             = "Fedryen Swiftspear"; // Name of the NPC it should sell/repair at.
             = 2;
             = 0.2; //once again easy, the percent that it will repair (yes .2 is the same as 20%)
             = 4;
             = ["bandage", "hearth", "shot", "arrow", "potion", "ore", "mining pick", "poison", "shell", 
    
    "thieves", "injector", "flash powder", "mote", "primal", "water", "skinning", "sargeras"];
    // If an item has these words in it, do NOT vendor it. Pretty simple right?
              = true; // like I said, true false, true means it will be sold I recomend true for white at higher level.
             = false; 
             = false;    
        }
        Pull
        { 
             = -3; 
             = ; //attack's within this level, if it blank then it will only be your level.
             = 3;
             = [26,744]; //this is the faction it attacks this can be changed by looking at PPAther form1 details
        }
        
        Hotspots //touchy, hotspots are hard when you begin, to find them open up form1 and look for a button labled "Hotspots" then press it, in the main glider window where you start glider it will show you the cords, copy them into the hotspot area with out brackets.
        { 
    // Make sure that the delimiters (decimal indicator) on your coords are periods and not commas. or any other symbol.
             = 4;
             = "Random";
             = [[ENTER HOTSPOT COORDS HERE], [ENTER HOTSPOT COORDS HERE], [ENTER HOTSPOT COORDS HERE]];
        }
    }
    Defence and Priority: Defence means the code to fight back. the priorty
    starts at 0 and can end when ever. The lower the number, the higher the priority
    now, there is a glich, no matter your priority, PPather is sucdial when it comes to
    gathering and doesn't care about whats around.

    NPC= The vendor npc name, such as Dawn Strider Farrider (made up)

    Now I'm going to begin with the do not sell vendor items. In part of the scripts
    $Protected = ["bandage", "hearth", "shot", "arrow", "potion", "ore", "mining pick", "poison", "shell",

    "thieves", "injector", "flash powder", "mote", "primal", "water", "skinning", "sargeras]
    The program reads the data of the item, if an item has a word with one of these in it it won't sell it. For instance lets say you dont' want to have bear hides soldm and it's not on the list. You could put "bear", or "hides, or "bear" "hides", or "bear hides".

    Now we have a very important part, saving files. you need to make a new folder called pathing2 in the glider folder directory. in the folder make a new .txt filed name the name of the character you are botting.
    Next in the root you save the code as tasks.psc
    Now you should be ready to glide, I will update more later.
    This is simple to understand, not very hard is it? Oh one last thing I forgot the random words in "" in the middle are donot vendor items, I will add photos later tomarow along with some fixes to guide.
    Good luck with PPather.


    Links for download:
    PPather latest: Glider Forums
    A great custom class to work with still in beta though: Glider Forums XP is pather version (doesn't need to run on windows XP)

    please tell me if this helped or if you have any addons to this.

    Please comment, and if you don't understand it enough to make your own, post your level, area you want, min level max level, items to keep, and if you want quest and I will make one.


    I would liek to add an extarnel link:
    http://www.mmowned.com/forums/bots-p...tml#post709198 this was posted by another member who made a EPIC find. I use this site alot to save time while setting up ppathings (unfortuantly for every one I am an innerspaceey atm might come back to boring old glider)
    Last edited by ~Jagris; 04-21-2008 at 02:22 PM.


    Total newbs guide to PPather
  2. #2
    Rmxr's Avatar Member
    Reputation
    7
    Join Date
    Jun 2007
    Posts
    35
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thanks always wondered what is was +rep

  3. #3
    Dougford's Avatar Member
    Reputation
    9
    Join Date
    Oct 2007
    Posts
    49
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Rmxr View Post
    thanks always wondered what is was +rep
    same. Saw a ton of posts about it and now i think i might start looking into it a bit more! +Rep when i can!

  4. #4
    ~Jagris's Avatar Contributor
    Reputation
    154
    Join Date
    Apr 2007
    Posts
    1,479
    Thanks G/R
    2/2
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks, I'm going to retype the guide to be more clear soon, but my friend wants on atm so I will do it soon.


  5. #5
    ~Jagris's Avatar Contributor
    Reputation
    154
    Join Date
    Apr 2007
    Posts
    1,479
    Thanks G/R
    2/2
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Updated it to include a few more things.


  6. #6
    ~Jagris's Avatar Contributor
    Reputation
    154
    Join Date
    Apr 2007
    Posts
    1,479
    Thanks G/R
    2/2
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Update fixed some typing errors, add the link. and am only keeping this uptodate for a while since I am using innerspace no


  7. #7
    hihi213's Avatar Contributor
    Reputation
    96
    Join Date
    Oct 2007
    Posts
    146
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you !

  8. #8
    Menthol8's Avatar Member
    Reputation
    15
    Join Date
    Feb 2008
    Posts
    89
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Lol name sounds like a addon.

  9. #9
    ~Jagris's Avatar Contributor
    Reputation
    154
    Join Date
    Apr 2007
    Posts
    1,479
    Thanks G/R
    2/2
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by hihi213 View Post
    Thank you !
    No problem I am going to be updating it with new scripts in the close future so stay aware.


  10. #10
    goider's Avatar Member
    Reputation
    45
    Join Date
    May 2007
    Posts
    421
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    helped alot, but i can't even access the page to download Ppather, i just want to know where it needs yto be placed, if somone could help there i would+REP then x2


    'If I Pwn Before I Wake... I Pray To Blizz My account Not To Take'- the book of Alkharaism because piggy is l337

  11. #11
    betadan's Avatar Member
    Reputation
    1
    Join Date
    May 2008
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    The full instructions to install Ppather can be found >here<

    As for the task files, they need to be placed in the Ppather directory.

    Hope this clears up any confusion for you

  12. #12
    ~Jagris's Avatar Contributor
    Reputation
    154
    Join Date
    Apr 2007
    Posts
    1,479
    Thanks G/R
    2/2
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by betadan View Post
    The full instructions to install Ppather can be found >here<

    As for the task files, they need to be placed in the Ppather directory.

    Hope this clears up any confusion for you
    No task files in glider directory no ppather


  13. #13
    yanbo's Avatar Member
    Reputation
    8
    Join Date
    Jan 2008
    Posts
    63
    Thanks G/R
    0/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ironically youve released this just after a huge glider and ppather ban wave.

  14. #14
    sweeper18's Avatar Member
    Reputation
    2
    Join Date
    Aug 2006
    Posts
    26
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by yanbo View Post
    ironically youve released this just after a huge glider and ppather ban wave.
    You should check out the original thread date.

  15. #15
    phatback's Avatar Member
    Reputation
    3
    Join Date
    Dec 2007
    Posts
    58
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Lol it just got bumped up and appears to be new :0

Page 1 of 2 12 LastLast

Similar Threads

  1. Ascent Total Offical Guides!
    By Menthol8 in forum WoW EMU Guides & Tutorials
    Replies: 9
    Last Post: 01-21-2009, 03:06 AM
  2. [10-Step Guide] STABLE Ppather 1.0.3c + Glider 1.6.2 with 1-70 Task
    By Come Undone in forum WoW Bot Maps And Profiles
    Replies: 92
    Last Post: 10-09-2008, 08:20 AM
  3. {Newb Guide} How to make a little bit of gold
    By james hell in forum World of Warcraft Guides
    Replies: 6
    Last Post: 07-18-2008, 08:02 PM
  4. [Guide] Total WoW Guide
    By Scrubs in forum World of Warcraft Guides
    Replies: 2
    Last Post: 04-13-2008, 08:44 PM
  5. Newbs guide to conecting to privite servers
    By Obex in forum WoW EMU Guides & Tutorials
    Replies: 28
    Last Post: 12-17-2007, 09:37 AM
All times are GMT -5. The time now is 06:15 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search