HELP lol npc's doing strange things menu

Shout-Out

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 26
  1. #1
    jackthripper's Avatar Member
    Reputation
    10
    Join Date
    Mar 2009
    Posts
    195
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    HELP lol npc's doing strange things

    just compiled and started a new server. i start up the realm and when i enter a new town or area ... literaly half of the npc's start walking south west until they end up walking into a tree or vanish totally. they have no way points. i have never seen this before. as funny as it is, but not good none the less. how does one stop this?


    plz help me out. i will +Rep the one that can solve this dilemma.
    Last edited by jackthripper; 03-26-2009 at 03:06 PM.

    HELP lol npc's doing strange things
  2. #2
    jackthripper's Avatar Member
    Reputation
    10
    Join Date
    Mar 2009
    Posts
    195
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    anyone? lol

  3. #3
    Algorithm's Avatar Member
    Reputation
    175
    Join Date
    Mar 2008
    Posts
    395
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    which core?

  4. #4
    jackthripper's Avatar Member
    Reputation
    10
    Join Date
    Mar 2009
    Posts
    195
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ArcEmu just compiled yesterday and same with rival db all fresh svn checkouts

  5. #5
    Algorithm's Avatar Member
    Reputation
    175
    Join Date
    Mar 2008
    Posts
    395
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    make sure you ran these sql updates

    ALTER TABLE `creature_proto` ADD `can_ranged` INT(11) unsigned NOT NULL DEFAULT '0' AFTER `maxdamage`;
    alter table `creature_proto` drop column `equipinfo1`, drop column `equipslot1`, drop column `equipinfo2`, drop column `equipslot2`, drop column `equipinfo3`, drop column `equipslot3`;
    alter table `creature_proto` change `equipmodel1` `slot1item` int(30) UNSIGNED DEFAULT '0' NOT NULL, change `equipmodel2` `slot2item` int(30) UNSIGNED DEFAULT '0' NOT NULL, change `equipmodel3` `slot3item` int(30) UNSIGNED DEFAULT '0' NOT NULL;
    ALTER TABLE `creature_spawns` ADD COLUMN `mountdisplayid` int UNSIGNED DEFAULT '0' NOT NULL after `standstate`, ADD COLUMN `slot1item` int UNSIGNED DEFAULT '0' NOT NULL after `mountdisplayid`, ADD COLUMN `slot2item` int UNSIGNED DEFAULT '0' NOT NULL after `slot1item`, ADD COLUMN `slot3item` int UNSIGNED DEFAULT '0' NOT NULL after `slot2item`;
    UPDATE `creature_spawns` SET `mountdisplayid` = (SELECT `mountdisplayid` FROM `creature_proto` WHERE `creature_proto`.`entry` = `creature_spawns`.`entry`);
    UPDATE `creature_spawns` SET `slot1item` = (SELECT `slot1item` FROM `creature_proto` WHERE `creature_proto`.`entry` = `creature_spawns`.`entry`);
    UPDATE `creature_spawns` SET `slot2item` = (SELECT `slot2item` FROM `creature_proto` WHERE `creature_proto`.`entry` = `creature_spawns`.`entry`);
    UPDATE `creature_spawns` SET `slot3item` = (SELECT `slot3item` FROM `creature_proto` WHERE `creature_proto`.`entry` = `creature_spawns`.`entry`);
    ALTER TABLE `creature_proto` DROP COLUMN `mountdisplayid`,DROP COLUMN `slot1item`,DROP COLUMN `slot2item`,DROP COLUMN `slot3item`;

  6. #6
    jackthripper's Avatar Member
    Reputation
    10
    Join Date
    Mar 2009
    Posts
    195
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ill give those a try right now

  7. #7
    jackthripper's Avatar Member
    Reputation
    10
    Join Date
    Mar 2009
    Posts
    195
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    1. dulicate colum name 'can ranged'
    2. cant drop 'equipinfo 1' check to see if colum/key exists
    3. duplicate colum name 'mountdisplayid'

  8. #8
    tylert40's Avatar Member
    Reputation
    31
    Join Date
    Dec 2007
    Posts
    47
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by jackthripper View Post
    1. dulicate colum name 'can ranged'
    2. cant drop 'equipinfo 1' check to see if colum/key exists
    3. duplicate colum name 'mountdisplayid'

    looks like u ran them then -.-

  9. #9
    Algorithm's Avatar Member
    Reputation
    175
    Join Date
    Mar 2008
    Posts
    395
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by jackthripper View Post
    1. dulicate colum name 'can ranged'
    2. cant drop 'equipinfo 1' check to see if colum/key exists
    3. duplicate colum name 'mountdisplayid'

    Ok it looks like the updates are already executed,, okey,. can you post your Waypoints, creature_proto and creature_spawns structure? Dont post the whole table dump just the structure. And i will see if you missing something there.,

  10. #10
    jackthripper's Avatar Member
    Reputation
    10
    Join Date
    Mar 2009
    Posts
    195
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    if you mean the table structures for those tables in the world database... i dont seem to have a waypoints table. and ive noticed that there is not one npc moving in the whole server exept of course the ones that are walking to the west and into oblivion and i have also noticed none of the npcs have any waypoints at all
    Last edited by jackthripper; 03-26-2009 at 09:09 PM.

  11. #11
    Algorithm's Avatar Member
    Reputation
    175
    Join Date
    Mar 2008
    Posts
    395
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    well if you do not have creature_waypoints that can be the problem lol

  12. #12
    jackthripper's Avatar Member
    Reputation
    10
    Join Date
    Mar 2009
    Posts
    195
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    oops wait, im on crack... yes i have it. ive been up since 7am working on tuts and my server ill see if i can post the structure

  13. #13
    Herleybob's Avatar Contributor
    Reputation
    178
    Join Date
    Jul 2007
    Posts
    663
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I had this same problem... But my NPCS would swim away with blue glow around them... i then switched to Aspire...

    Nom Nom Nom :P

  14. #14
    jackthripper's Avatar Member
    Reputation
    10
    Join Date
    Mar 2009
    Posts
    195
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I just noticed i only have 35-40 id's/entry's in those 3 tables (waypoints, proto and spawns... isnt there supposed to be a lot more than that??

  15. #15
    Algorithm's Avatar Member
    Reputation
    175
    Join Date
    Mar 2008
    Posts
    395
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by jackthripper View Post
    I just noticed i only have 35-40 id's/entry's in those 3 tables (waypoints, proto and spawns... isnt there supposed to be a lot more than that??

    way more..

Page 1 of 2 12 LastLast

Similar Threads

  1. [Request] Need help! I get Strange things in LUA -_-
    By sheepking in forum World of Warcraft Emulator Servers
    Replies: 0
    Last Post: 05-11-2008, 06:15 PM
  2. help lol!
    By mchugh in forum Art & Graphic Design
    Replies: 6
    Last Post: 04-29-2007, 06:10 AM
  3. Weapon out while doing many things
    By scag in forum World of Warcraft Exploits
    Replies: 7
    Last Post: 03-24-2007, 03:20 PM
  4. Strange thing in Ocean.
    By Volt in forum World of Warcraft Exploits
    Replies: 17
    Last Post: 09-02-2006, 02:23 PM
  5. Oh dear NEED HELP LOL
    By afiwarlord in forum WoW ME Questions and Requests
    Replies: 3
    Last Post: 08-25-2006, 09:43 AM
All times are GMT -5. The time now is 10:28 PM. 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