custom vendor help menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 17
  1. #1
    Boness's Avatar Member
    Reputation
    13
    Join Date
    Oct 2007
    Posts
    36
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    custom vendor help

    Ok I am doing this on navicat and when I execute the batch file this shows up.

    [Err] 1054 - Unknown column 'level' in 'field list'
    [Err] INSERT INTO creature_proto (entry, level, faction, health, mana, scale, npcflags, attacktime, mindamage, maxdamage, rangedattacktime, rangedmindamage, rangedmaxdamage, mountdisplayid, item1slotdisplay, item1info1, item1info2, item2slotdisplay, item2info1, item2info2, item3slotdisplay, item3info1, item3info2, respawntime, resistance0_armor, resistance1, resistance2, resistance3, resistance4, resistance5, resistance6, combat_reach, bounding_radius, auras, boss, money)
    VALUES (50000, 58, 814, 574754, 1, 1, 16388, 1800, 150, 250, 1800, 500, 650, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36000, 0, 0, 0, 0, 0, 0, 0, 1, 0, "MEMO", 0, 0);
    [Msg] Finished - Unsuccessfully
    --------------------------------------------------

    custom vendor help
  2. #2
    Xcynic's Avatar Contributor
    Reputation
    252
    Join Date
    Jul 2007
    Posts
    359
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: custom vendor help

    the column level, is supposed to me minlevel, maxlevel so like this:


    [Err] 1054 - Unknown column 'level' in 'field list'
    [Err] INSERT INTO creature_proto (entry, minlevel, maxlevel, faction, health, mana, scale, npcflags, attacktime, mindamage, maxdamage, rangedattacktime, rangedmindamage, rangedmaxdamage, mountdisplayid, item1slotdisplay, item1info1, item1info2, item2slotdisplay, item2info1, item2info2, item3slotdisplay, item3info1, item3info2, respawntime, resistance0_armor, resistance1, resistance2, resistance3, resistance4, resistance5, resistance6, combat_reach, bounding_radius, auras, boss, money)
    VALUES (50000, 58, 58, 814, 574754, 1, 1, 16388, 1800, 150, 250, 1800, 500, 650, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 36000, 0, 0, 0, 0, 0, 0, 0, 1, 0, "MEMO", 0, 0);
    [Msg] Finished - Unsuccessfully

    add the red parts
    Last edited by Historical; 10-15-2007 at 02:14 PM.

  3. #3
    Boness's Avatar Member
    Reputation
    13
    Join Date
    Oct 2007
    Posts
    36
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: custom vendor help

    ty on that part...now there is another error:yuck:
    I have spawned this creature so I know it is a good display ID.

    [Err] 1054 - Unknown column 'displayid' in 'field list'
    [Err] INSERT INTO creature_names (entry, creature_name, Subname, Flags1, type, Family, Rank, unk4, SpellDataID, displayid, unk2, unk3, Civilian, Leader)
    VALUES (90001,"Don't PVP at the MALL!","I WILL RAPE U IF U DO",0,7,1,0,0,NULL,1747,1,1,1,NULL);
    [Msg] Finished - Unsuccessfully
    --------------------------------------------------

  4. #4
    Xcynic's Avatar Contributor
    Reputation
    252
    Join Date
    Jul 2007
    Posts
    359
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: custom vendor help

    what database do you use?

    try this:

    INSERT INTO creature_names (entry, creature_name, Subname, Flags1, type, Family, Rank, unk4, SpellDataID, male_displayid, female_displayid, unk2, unk3, Civilian, Leader)
    VALUES (90001,"Don't PVP at the MALL!","I WILL RAPE U IF U DO",0,7,1,0,0,NULL,1747,1,1,1,1,NULL);


    Red colored text is new: copy paste and try that.
    Last edited by Historical; 10-15-2007 at 02:35 PM.

  5. #5
    Boness's Avatar Member
    Reputation
    13
    Join Date
    Oct 2007
    Posts
    36
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: custom vendor help

    Now this is my error list...btw I am using Navicat...and I haven't downloaded any repacks...for some reason they just don't feel like working for me. If you can help me fix my comp and its repack problem ty.

    [Err] 1054 - Unknown column 'unk2' in 'field list'
    [Err] INSERT INTO creature_names (entry, creature_name, Subname, Flags1, type, Family, Rank, unk4, SpellDataID, male_displayid, female_displayid, unk2, unk3, Civilian, Leader)
    VALUES (90007,"Don't PVP at the MALL!","I WILL RAPE U IF U DO",0,7,1,0,0,NULL,1747,1,1,1,1,NULL);
    [Msg] Finished - Unsuccessfully
    --------------------------------------------------

  6. #6
    Boness's Avatar Member
    Reputation
    13
    Join Date
    Oct 2007
    Posts
    36
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: custom vendor help

    bump6): sry...still need help =(

  7. #7
    Xcynic's Avatar Contributor
    Reputation
    252
    Join Date
    Jul 2007
    Posts
    359
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: custom vendor help

    You dont have a database? :S

  8. #8
    Equ1N0X's Avatar Contributor
    Reputation
    148
    Join Date
    Mar 2007
    Posts
    1,197
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: custom vendor help

    JulianX repack 5
    works like a charm if you follow carefully

  9. #9
    Boness's Avatar Member
    Reputation
    13
    Join Date
    Oct 2007
    Posts
    36
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: custom vendor help

    I can never get any repacks to work...so i guess not >.>

  10. #10
    Equ1N0X's Avatar Contributor
    Reputation
    148
    Join Date
    Mar 2007
    Posts
    1,197
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: custom vendor help

    if you dint know how to use a repack, then how do you expect to get your server running? a repack is basically a premade folder with serve rfiles, if you cant sue that, how would making your own files work easyer?

  11. #11
    Boness's Avatar Member
    Reputation
    13
    Join Date
    Oct 2007
    Posts
    36
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: custom vendor help

    Ya, I went to those and they never gave a good guide...for noobies like me. Just found Julianx...It has a good guide so far.

  12. #12
    Xcynic's Avatar Contributor
    Reputation
    252
    Join Date
    Jul 2007
    Posts
    359
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: custom vendor help

    go look in the creature_names column and see if u find something called unk2, if its something else then just rename it to that

  13. #13
    Boness's Avatar Member
    Reputation
    13
    Join Date
    Oct 2007
    Posts
    36
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: custom vendor help

    It is named unknown1 in navicat..I changed it to that and it still didn't work.hnoes:

  14. #14
    Xcynic's Avatar Contributor
    Reputation
    252
    Join Date
    Jul 2007
    Posts
    359
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: custom vendor help

    well you have to look at all columns, if they match what the sql says, change everything that isnt correct.

  15. #15
    Boness's Avatar Member
    Reputation
    13
    Join Date
    Oct 2007
    Posts
    36
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: custom vendor help

    I did but it isnt stil saying unknow column "unk1" in "field" list

Page 1 of 2 12 LastLast

Similar Threads

  1. Custom Vendor Help
    By UGR1984 in forum WoW EMU Questions & Requests
    Replies: 20
    Last Post: 09-05-2008, 02:35 PM
  2. Custom Vendor help.
    By NEferiouis07 in forum WoW EMU Questions & Requests
    Replies: 14
    Last Post: 09-05-2008, 11:50 AM
  3. [Help request] Custom vendors.....
    By Ellenor in forum World of Warcraft Emulator Servers
    Replies: 1
    Last Post: 01-19-2008, 05:06 PM
  4. [Help] Custom Vendors
    By Ballwinkle in forum World of Warcraft Emulator Servers
    Replies: 1
    Last Post: 01-12-2008, 05:54 AM
  5. Replies: 4
    Last Post: 10-03-2007, 12:34 PM
All times are GMT -5. The time now is 03:48 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