Removing Costs and Conditions of obtaining items menu

User Tag List

Results 1 to 11 of 11
  1. #1
    Xeneth's Avatar Member
    Reputation
    157
    Join Date
    Oct 2007
    Posts
    534
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Removing Costs and Conditions of obtaining items

    The Query To Execute

    Code:
    UPDATE `items` SET ItemExtendedCost = 0 WHERE `entry` BETWEEN '1' and '40000';
    The Query Defined.

    UPDATE "items" = Table that the query is being executed in. (replace ascent with whatever your world database is named)

    WHERE "entry" = Column

    BETWEEN '1' and '40000'; = Lines to be Edited according to selected column.


    Variables.


    Code:
    SET ? = 0
    
    ? = Item Extended Cost = Removes Arena point requirement/Honor Point Requirement
    
    ? = ArenaRankRequirement = Disables Arena Rank Requirement
    
    ? = RequiredFaction = Disables Faction Requirment (Revered, Exalted, Et'cetra)
    
    ? = RequiredFactionStanding = Disables Required Faction Standing (Thrallmar, Scryers, Et'cetra)
    
    ? = buyprice = How much the item will cost if in a shop
    
    ? = sellprice = How much the item will sell for (I set to 1 for every item in the game, So when you trash items you'd normally have to type in "Delete" for, You can just sell to vendor, It's faster and your players will thank you for it)

    Spread this guide like a wildfire
    I don't care if i don't get credit for it, This is information that anyone with half a brain should already know.
    I would also like to thank MMOWNED for all the knowledge you've given me.

    Special thanks goes to

    Mafiaboy

    Julianx

    Illadin1

    Gastric
    WARNING

    ONCE YOU'VE EDITED THE TABLE, THE ONLY WAY TO GET THESE VALUES BACK IS TO RELOAD YOUR DATABASE OR ADD VALUES TO 40000 ITEMS MANUALLY
    Last edited by Xeneth; 12-30-2007 at 03:21 AM.

    Removing Costs and Conditions of obtaining items
  2. #2
    chanceless's Avatar Member
    Reputation
    25
    Join Date
    Feb 2007
    Posts
    100
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    well thank you for ehm stealing my post... without credits to me or adding me to the thanks? Wow, you are sooo great...
    .....
    https://dreamforce.sytes.net


  3. #3
    Xeneth's Avatar Member
    Reputation
    157
    Join Date
    Oct 2007
    Posts
    534
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Stealing what post?! I didn't steal your post, I simplified it.

    Instead of going *Down Key* *0* for 30 minutes you can just type in this 1 query and it has way more information in it.

  4. #4
    Xeneth's Avatar Member
    Reputation
    157
    Join Date
    Oct 2007
    Posts
    534
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Bump

    <filler>


  5. #5
    Xeneth's Avatar Member
    Reputation
    157
    Join Date
    Oct 2007
    Posts
    534
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Simplified this Further, Here's a list of all the queries, Just paste this and mass execute
    Code:
    UPDATE `items` SET ItemExtendedCost = 0 WHERE `entry` BETWEEN '1' and '40000';
    UPDATE `items` SET ArenaRankRequirement = 0 WHERE `entry` BETWEEN '1' and '40000';
    UPDATE `items` SET RequiredFaction = 0 WHERE `entry` BETWEEN '1' and '40000';
    UPDATE `items` SET RequiredFactionStanding = 0 WHERE `entry` BETWEEN '1' and '40000';
    UPDATE `items` SET buyprice = 0 WHERE `entry` BETWEEN '1' and '40000';
    UPDATE `items` SET sellprice = 1 WHERE `entry` BETWEEN '1' and '40000';


  6. #6
    *TraPStaR*'s Avatar Contributor
    Reputation
    164
    Join Date
    Aug 2007
    Posts
    275
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    here i'll make it noob simplified

    Code:
    UPDATE `items` SET ItemExtendedCost = 0;
    UPDATE `items` SET ArenaRankRequirement = 0;
    UPDATE `items` SET RequiredFaction = 0;
    UPDATE `items` SET RequiredFactionStanding = 0;
    UPDATE `items` SET buyprice = 0;
    UPDATE `items` SET sellprice = 1;
    this does them all no mater what

  7. #7
    Xeneth's Avatar Member
    Reputation
    157
    Join Date
    Oct 2007
    Posts
    534
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Bump, I've seen some people Posting about how to add/remove costs and whatnot, Figured this would be useful. In my honest opinion i think this little guide got under rated. Not saying that because it's my work, and I "just want rep" I tend to step outside myself and judge myself.

    I over think and over say everything haha, Sorry


  8. #8
    bill45's Avatar Member
    Reputation
    5
    Join Date
    Jan 2008
    Posts
    104
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ah thank for this post, it helped me with my item problem

  9. #9
    chaoticd35's Avatar Site Donator
    Reputation
    44
    Join Date
    Jun 2007
    Posts
    337
    Thanks G/R
    5/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks, this will help me out alot!!

  10. #10
    Lifelies's Avatar Member
    Reputation
    1
    Join Date
    Apr 2007
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is it possible to get this in a batch file?

  11. #11
    Tobeo's Avatar Active Member
    Reputation
    17
    Join Date
    Mar 2007
    Posts
    43
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

Similar Threads

  1. Remove spells and items
    By Royalaty in forum World of Warcraft Emulator Servers
    Replies: 3
    Last Post: 06-28-2008, 06:10 PM
  2. How to remove arena costs and other item/Point reqs
    By Tobeo in forum WoW EMU Guides & Tutorials
    Replies: 15
    Last Post: 05-18-2008, 03:53 PM
  3. Replies: 0
    Last Post: 04-23-2008, 01:13 PM
  4. Remove Prices and Stuff Like That
    By Deathinabox in forum WoW EMU Guides & Tutorials
    Replies: 1
    Last Post: 01-26-2008, 12:04 PM
  5. I just hit lvl 40 on my pally..and i want new items...
    By youmekinda in forum World of Warcraft General
    Replies: 7
    Last Post: 03-05-2007, 08:36 PM
All times are GMT -5. The time now is 01:36 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