[Sollution] Mouse Icons at Newest Revisions menu

User Tag List

Page 2 of 3 FirstFirst 123 LastLast
Results 16 to 30 of 32
  1. #16
    ~ViVo~'s Avatar Banned
    Reputation
    52
    Join Date
    Feb 2008
    Posts
    560
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I already did this...

    [Sollution] Mouse Icons at Newest Revisions
  2. #17
    Da Tank's Avatar Active Member
    Reputation
    44
    Join Date
    Jul 2007
    Posts
    251
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ur the EMU expert to help me most this month

  3. #18
    pepsi1x1's Avatar Member
    Reputation
    26
    Join Date
    Jul 2007
    Posts
    58
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    im sure you could just run a sql query like

    obviously changing the 3,15 for the combination of npcflags that can be used on a vendor :P
    UPDATE `creature_names` SET `info_str` = 'vendor' WHERE `entry` in (SELECT `entry` from creature_proto where npcflags = 3,15 ) ;

  4. #19
    warxhead's Avatar Member
    Reputation
    13
    Join Date
    Jan 2007
    Posts
    76
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Dang, you beat me to it.
    But here's an example anyway.
    Code:
    Normal Vendor:
    UPDATE `creature_names` SET `info_str` = 'buy' WHERE `entry` in (SELECT `entry` from creature_proto where npcflags = 128 ) ;
    Repair:
    UPDATE `creature_names` SET `info_str` = 'repair' WHERE `entry` in (SELECT `entry` from creature_proto where npcflags = 4224 ) ;
    Trainer:
    UPDATE `creature_names` SET `info_str` = 'trainer' WHERE `entry` in (SELECT `entry` from creature_proto where npcflags = 16 ) ;
    Guard:
    UPDATE `creature_names` SET `info_str` = 'directions' WHERE `entry` in (SELECT `entry` from creature_proto where npcflags = 1 ) ;

  5. #20
    pepsi1x1's Avatar Member
    Reputation
    26
    Join Date
    Jul 2007
    Posts
    58
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    haha sorry mate, your queries look prettier than mine on that codebox tho

    +Rep for great minds think alike

  6. #21
    Anarchy [RD]'s Avatar Contributor
    Reputation
    132
    Join Date
    Jan 2008
    Posts
    547
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Nick0016 View Post
    Hehe, It's hell a lot of work to change all lol :P
    not realy, depending on how fast u work, it can take 5 minutes tops

    and +Rep for Knaur!

  7. #22
    ~ViVo~'s Avatar Banned
    Reputation
    52
    Join Date
    Feb 2008
    Posts
    560
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    People.. wow.. Look in the guide section, I posted one 12 hours before he did..

    *Sigh*
    ________
    I'm out.

  8. #23
    Da Tank's Avatar Active Member
    Reputation
    44
    Join Date
    Jul 2007
    Posts
    251
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    No u didn't I posted about it first and u talked about deleting the section Knaur actually tells you what to put into info_str so stub being a noob.. god

  9. #24
    knaur's Avatar Elite User
    Reputation
    400
    Join Date
    Nov 2007
    Posts
    634
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    vivoxity: first thing... this sollution you gave ARE GODDAMN OLD and its like 100 posts before, with the "delete 0 or NULL" sollution.

    If you read MY post, you maybe would see that YOUR SOLLUTION DONT WORK FOR EVERYONE goddamnit... do ppl need all in with a spoon these days?

    Ok, read this:

    Your sollution works for many ppl,
    BUT of a strange reason it does NOT work for everyone.
    Like on our realms at epicwow, when we have info_str
    all empty, its still NO ICONS! (yeah, ofcourse i deleted cache folder.....)

    BUT my sollution WORKS for ALL databases with info_str field,
    because my sollution is actually the one that normally
    shall be used for icons (what burlex made the field for)

    NCDB has started now with filling in this info in theyr tables at svn.

    if you write like this word in the field: Directions
    the directions icon will come

    if you write this word: repair
    the repair icon will show.

    So in other word: MY SOLLUTION IS A WHOLE DIFFERENT THAN YOUR
    SOLLUTION THAT ALREADY EVERYONE KNOW FROM BEFORE

    so shut the **** up before you get banned from mmowned
    ------------------------------------------------------
    Knaur - Founder of The Norwegian Elite Team

  10. #25
    Da Tank's Avatar Active Member
    Reputation
    44
    Join Date
    Jul 2007
    Posts
    251
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I guess so cuz he made a post like if anyone cared.. saying he is leaving the EMU section for ppl stealing his GREAT CONTRIBUTIONS.. lol w/e dude needs to grow up.... Btw Knaur this worked for sum custom guards but i cant seem to find my custom mall =P Any help??

  11. #26
    knaur's Avatar Elite User
    Reputation
    400
    Join Date
    Nov 2007
    Posts
    634
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    use .npc info on the npc,s in game, then you get spawn id.
    when you have the spawn id,s its easyer to find them in database
    ------------------------------------------------------
    Knaur - Founder of The Norwegian Elite Team

  12. #27
    Da Tank's Avatar Active Member
    Reputation
    44
    Join Date
    Jul 2007
    Posts
    251
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thanxs alot man.. i think i can rep u now that 24 hour cooldown is gone

  13. #28
    Anarchy [RD]'s Avatar Contributor
    Reputation
    132
    Join Date
    Jan 2008
    Posts
    547
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Wooo Knaur is from Epic WoW, which means he must be EPIC!!!

    yes that was lame, but he is still EPIC lol

    Edit: better?
    Last edited by Anarchy [RD]; 02-29-2008 at 10:13 AM.

  14. #29
    Da Tank's Avatar Active Member
    Reputation
    44
    Join Date
    Jul 2007
    Posts
    251
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    naa Knaur is Epix

  15. #30
    knaur's Avatar Elite User
    Reputation
    400
    Join Date
    Nov 2007
    Posts
    634
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hehe =) hmm, missing the pink color for epic lol
    ------------------------------------------------------
    Knaur - Founder of The Norwegian Elite Team

Page 2 of 3 FirstFirst 123 LastLast

Similar Threads

  1. [How-To] Compile the newest Arcemu revision - Noob Friendly!
    By Thunderofnl in forum WoW EMU Guides & Tutorials
    Replies: 19
    Last Post: 06-12-2016, 05:10 PM
  2. Replies: 11
    Last Post: 06-27-2013, 01:55 PM
  3. No Mouse Icon over Custom Vendors? [Fix is here]
    By Illidan1 in forum World of Warcraft Emulator Servers
    Replies: 12
    Last Post: 03-30-2008, 07:02 AM
  4. Newest Revision
    By devilat in forum World of Warcraft Emulator Servers
    Replies: 8
    Last Post: 03-23-2008, 12:39 PM
  5. Welcome the newest moderator.. Dwarpy
    By Matt in forum OC News
    Replies: 5
    Last Post: 05-20-2006, 02:42 AM
All times are GMT -5. The time now is 11:30 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