[RELEASE!] Vendor and NPC Generator. =) menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 21
  1. #1
    Snailz's Avatar Contributor Authenticator enabled
    Reputation
    239
    Join Date
    Nov 2007
    Posts
    941
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [RELEASE!] Vendor and NPC Generator. =)

    Yes i made this becuase of S7's request and mainly becuase wow-v sucks hardcore.

    Same rules apply. if i see it leaked. its outaa here.

    DEMO

    Source:

    Code:
    <HTML>
    <HEAD>
     <TITLE>Vendor Generator By Snailz</TITLE>
    </HEAD>
    <BODY>
    
    
    <form action="generate2.php" method="post">
     EntryID: <input type="text" name="id" size="30"> (Needed)
     <br/>
     <br/>
     Name: <input type="text" name="name" size="30"> (Needed)
     <br/>
     <br/>
     Subname: <input type="text" name="subname" size="30">
     <br/>
     <br/>
      Displayid: <input type="text" name="display" size="30">  (Needed)
     <br/>
     <br/>
     <input name="type" type="hidden" value="hid" />
        Type: <select name="type" size="1">
    
            <option value="7">Type</option>
            <option value="1">Beast</option>
            <option value="2">Dragonkin</option>
            <option value="3">Demon</option>
            <option value="4">Elemental</option>
            <option value="5">Giant</option>
            <option value="6">Undead</option>
            <option value="7">Humaniod</option>
            <option value="8">Critter</option>
            <option value="9">Mechanical</option>
            <option value="10">Totem</option>
    </select> (Leave if you want Default (Humaniod)<br /><br />
    
    <input name="family" type="hidden" value="hid" />
        Family: <select name="family" size="1">
    
            <option value="0">Family</option>
            <option value="1">Wolf</option>
            <option value="2">Cat</option>
            <option value="3">Spider</option>
            <option value="4">Bear</option>
            <option value="5">Boar</option>
            <option value="6">Crocolisk</option>
            <option value="7">Carrion Bird</option>
            <option value="8">Crab</option>
            <option value="9">Gorilla</option>
            <option value="11">Raptor</option>
            <option value="12">Tallstrider</option>
            <option value="15">Felhunter</option>
            <option value="16">Voidwalker</option>
            <option value="18">Succubus</option>
            <option value="19">Doomguard</option>
            <option value="20">Scorpid</option>
            <option value="21">Turtle</option>
            <option value="23">Imp</option>
            <option value="24">Bat</option>
            <option value="25">Hyena</option>
            <option value="26">Owl</option>
            <option value="27">Wind Serpent</option>
            <option value="28">Remote Control</option>
            <option value="29">Fel Guard</option>
            <option value="30">Dragonhawk</option>
            <option value="31">Ravager</option>
            <option value="32">Warp Stalker</option>
            <option value="33">Sporebat</option>
            <option value="34">Nether Ray</option>
            <option value="35">Serpent</option>
    </select><br /><br />
    
    <input name="rank" type="hidden" value="hid" />
        Rank: <select name="rank" size="1">
    
            <option value="0">Normal</option>
            <option value="1">Elite</option>
            <option value="2">Rare Elite (?)</option>
            <option value="3">Boss</option>
    </select><br />
     <br/>
    Faction: <input type="text" name="faction" size="30">  (Needed)
    <br/>
    <br/>
    Level: <input type="text" name="level" size="30">  (Needed)
    <br/>
    <br/>
     <input name="scale" type="hidden" value="hid" />
        Scale: <select name="scale" size="1">
    
            <option value="0">0</option>
            <option value="1">1</option>
            <option value="2">2</option>
            <option value="3">3</option>
    </select><br /><br />
    
     <input name="flags" type="hidden" value="hid" />
        Flags: <select name="flags" size="1">
    
            <option value="0">Normal</option>
            <option value="4224">Vendor</option>
    </select><br /><br />
    
    Sells Item#1: <input type="text" name="item1" size="30"><br />
    Sells Item#2: <input type="text" name="item2" size="30"><br />
    Sells Item#3: <input type="text" name="item3" size="30"><br />
    Sells Item#4: <input type="text" name="item4" size="30"><br />
    Sells Item#5: <input type="text" name="item5" size="30"><br />
    
    <input type="submit" value="Generate!">
     <br/>
     <br/>
    
    
     <textarea name="output" cols="130" rows="20">
    <?php
    $name = $_POST['name'];
    $subname = $_POST['subname'];
    $displayid = $_POST['displayid'];
    $type = $_POST['type'];
    $family = $_POST['family'];
    $rank = $_POST['rank'];
    $faction = $_POST['faction'];
    $level = $_POST['level'];
    $scale = $_POST['scale'];
    $id = $_POST['id'];
    $flags = $_POST['flags'];
    $item1 = $_POST['item1'];
    $item2 = $_POST['item2'];
    $item3 = $_POST['item3'];
    $item4 = $_POST['item4'];
    $item5 = $_POST['item5'];
    
    
    if ($flags=="0")
    echo "
    INSERT INTO `creature_names` VALUES ('$id', '$name', '$subname', '', '0', '$type', '$family', '$rank', '0', '0', '$displayid', '$displayid', '0', '0', '1', '1', '0', '0');
    
    INSERT INTO `creature_proto` VALUES ('$id', '70', '70', '$faction', '10000', '10000', '10000', '$scale', '$flags', '2000', '0', '6000', '6000', '0', '0', '0', '0', '33304', '33490690', '789', '33307', '33490436', '1038', '0', '0', '0', '360000', '0', '0', '0', '0', '0', '0', '0', '1', '1', '0', '0', '0', '0', '0', '2.5', '8', '14', '0');";
    
     elseif($flags=="4224")
    echo "INSERT INTO `vendors` VALUES ('$id', '$item1', '0', '0', '0');
    INSERT INTO `vendors` VALUES ('$id', '$item2', '0', '0', '0');
    INSERT INTO `vendors` VALUES ('$id', '$item3', '0', '0', '0');
    INSERT INTO `vendors` VALUES ('$id', '$item4', '0', '0', '0');
    INSERT INTO `vendors` VALUES ('$id', '$item5', '0', '0', '0');
    
    INSERT INTO `creature_names` VALUES ('$id', '$name', '$subname', '', '0', '$type', '$family', '$rank', '0', '0', '$displayid', '$displayid', '0', '0', '1', '1', '0', '0');
    
    INSERT INTO `creature_proto` VALUES ('$id', '70', '70', '$faction', '10000', '10000', '10000', '$scale', '$flags', '2000', '0', '6000', '6000', '0', '0', '0', '0', '33304', '33490690', '789', '33307', '33490436', '1038', '0', '0', '0', '360000', '0', '0', '0', '0', '0', '0', '0', '1', '1', '0', '0', '0', '0', '0', '2.5', '8', '14', '0');";
    
    ?>
    </textarea>
    <br/>
    <br/>
    
    Made By Snailz @ MMowned.com - Becuase wow-v sucks.
    
    </BODY>
    </HTML>

    Snailz
    Cheese Cake?

    [RELEASE!] Vendor and NPC Generator. =)
  2. #2
    Deamie's Avatar Member
    Reputation
    11
    Join Date
    Jan 2007
    Posts
    133
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Snailz from teh Blizzard HQ?
    Anywho's, good work!

  3. #3
    Snailz's Avatar Contributor Authenticator enabled
    Reputation
    239
    Join Date
    Nov 2007
    Posts
    941
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i was but then i quit =/ and thx ^^ willing to make 2 more gens if any1 want some say pl0x
    Cheese Cake?

  4. #4
    Minichili's Avatar Member
    Reputation
    12
    Join Date
    Mar 2008
    Posts
    257
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nice. But what should i do if i want to add it to my own site to make it like a site for GM's? i know how to make the page but i cant get the "generate" to work

  5. #5
    Snailz's Avatar Contributor Authenticator enabled
    Reputation
    239
    Join Date
    Nov 2007
    Posts
    941
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    save the file as generate2.php

    and make the link onto a diffrent page.
    Cheese Cake?

  6. #6
    Minichili's Avatar Member
    Reputation
    12
    Join Date
    Mar 2008
    Posts
    257
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    What link?

  7. #7
    Snailz's Avatar Contributor Authenticator enabled
    Reputation
    239
    Join Date
    Nov 2007
    Posts
    941
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    as in. link it to a diffrent file on youre site.

    Dont keep it on one page =/ and have you named the file generate2.php ?
    Cheese Cake?

  8. #8
    Minichili's Avatar Member
    Reputation
    12
    Join Date
    Mar 2008
    Posts
    257
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    yep. ChiliWoW servegame org/generate2 php

    ill try fix it now then

  9. #9
    Minichili's Avatar Member
    Reputation
    12
    Join Date
    Mar 2008
    Posts
    257
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Cant find anywhere you placed your link Also sorry im such a big issue to you right now
    Last edited by Minichili; 05-30-2008 at 07:34 AM.

  10. #10
    Snailz's Avatar Contributor Authenticator enabled
    Reputation
    239
    Join Date
    Nov 2007
    Posts
    941
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    show me the source for the page.
    Cheese Cake?

  11. #11
    Minichili's Avatar Member
    Reputation
    12
    Join Date
    Mar 2008
    Posts
    257
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    <HTML>
    <HEAD>
    <TITLE>Vendor Generator By Snailz</TITLE>
    </HEAD>
    <BODY>


    <form action="generate2.php" method="post">
    EntryID: <input type="text" name="id" size="30"> (Needed)
    <br/>
    <br/>

    Name: <input type="text" name="name" size="30"> (Needed)
    <br/>
    <br/>
    Subname: <input type="text" name="subname" size="30">
    <br/>
    <br/>
    Displayid: <input type="text" name="display" size="30"> (Needed)
    <br/>

    <br/>
    <input name="type" type="hidden" value="hid" />
    Type: <select name="type" size="1">

    <option value="7">Type</option>
    <option value="1">Beast</option>
    <option value="2">Dragonkin</option>

    <option value="3">Demon</option>
    <option value="4">Elemental</option>
    <option value="5">Giant</option>
    <option value="6">Undead</option>
    <option value="7">Humaniod</option>
    <option value="8">Critter</option>

    <option value="9">Mechanical</option>
    <option value="10">Totem</option>
    </select> (Leave if you want Default (Humaniod)<br /><br />

    <input name="family" type="hidden" value="hid" />
    Family: <select name="family" size="1">

    <option value="0">Family</option>

    <option value="1">Wolf</option>
    <option value="2">Cat</option>
    <option value="3">Spider</option>
    <option value="4">Bear</option>
    <option value="5">Boar</option>
    <option value="6">Crocolisk</option>

    <option value="7">Carrion Bird</option>
    <option value="8">Crab</option>
    <option value="9">Gorilla</option>
    <option value="11">Raptor</option>
    <option value="12">Tallstrider</option>
    <option value="15">Felhunter</option>

    <option value="16">Voidwalker</option>
    <option value="18">Succubus</option>
    <option value="19">Doomguard</option>
    <option value="20">Scorpid</option>
    <option value="21">Turtle</option>
    <option value="23">Imp</option>

    <option value="24">Bat</option>
    <option value="25">Hyena</option>
    <option value="26">Owl</option>
    <option value="27">Wind Serpent</option>
    <option value="28">Remote Control</option>
    <option value="29">Fel Guard</option>

    <option value="30">Dragonhawk</option>
    <option value="31">Ravager</option>
    <option value="32">Warp Stalker</option>
    <option value="33">Sporebat</option>
    <option value="34">Nether Ray</option>
    <option value="35">Serpent</option>

    </select><br /><br />

    <input name="rank" type="hidden" value="hid" />
    Rank: <select name="rank" size="1">

    <option value="0">Normal</option>
    <option value="1">Elite</option>
    <option value="2">Rare Elite (?)</option>
    <option value="3">Boss</option>

    </select><br />
    <br/>
    Faction: <input type="text" name="faction" size="30"> (Needed)
    <br/>
    <br/>
    Level: <input type="text" name="level" size="30"> (Needed)
    <br/>
    <br/>
    <input name="scale" type="hidden" value="hid" />
    Scale: <select name="scale" size="1">

    <option value="0">0</option>
    <option value="1">1</option>
    <option value="2">2</option>
    <option value="3">3</option>
    </select><br /><br />

    <input name="flags" type="hidden" value="hid" />

    Flags: <select name="flags" size="1">

    <option value="0">Normal</option>
    <option value="4224">Vendor</option>
    </select><br /><br />

    Sells Item#1: <input type="text" name="item1" size="30"><br />
    Sells Item#2: <input type="text" name="item2" size="30"><br />
    Sells Item#3: <input type="text" name="item3" size="30"><br />

    Sells Item#4: <input type="text" name="item4" size="30"><br />
    Sells Item#5: <input type="text" name="item5" size="30"><br />

    <input type="submit" value="Generate!">
    <br/>
    <br/>


    <textarea name="output" cols="130" rows="20">
    </textarea>
    <br/>
    <br/>

    Made By Snailz @ MMowned.com - Becuase wow-v sucks.

    </BODY>
    </HTML>

  12. #12
    Snailz's Avatar Contributor Authenticator enabled
    Reputation
    239
    Join Date
    Nov 2007
    Posts
    941
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    wheres the php in it lol ^^ ?
    Cheese Cake?

  13. #13
    Minichili's Avatar Member
    Reputation
    12
    Join Date
    Mar 2008
    Posts
    257
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    lol took it exacly from your site

  14. #14
    Snailz's Avatar Contributor Authenticator enabled
    Reputation
    239
    Join Date
    Nov 2007
    Posts
    941
    Thanks G/R
    2/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    use mt code >.< the one i posted at the top.....then it will work.
    Cheese Cake?

  15. #15
    rahburt33's Avatar Member
    Reputation
    15
    Join Date
    Feb 2008
    Posts
    228
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    the link doesent work, also is it for open ascent or reg. ascent?

Page 1 of 2 12 LastLast

Similar Threads

  1. Replies: 10
    Last Post: 08-28-2012, 09:21 PM
  2. [Database] How do i make npc as a vendor, and give quests?
    By Salaramon in forum WoW EMU Questions & Requests
    Replies: 12
    Last Post: 06-14-2010, 07:59 AM
  3. [Release] MegaGenerator [V2] (Combination, key and code generator)
    By Y R U A NUB ? in forum World of Warcraft Bots and Programs
    Replies: 64
    Last Post: 11-22-2008, 06:06 PM
All times are GMT -5. The time now is 03:45 AM. 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