Hello & Welcome to our community. Is this your first visit? Register
Follow us on
Follow us on Facebook Follow us on Twitter Watch us on YouTube


MMOCoin

Likes Likes:  0
Page 4 of 27 FirstFirst 123456781419 ... LastLast
Results 31 to 40 of 269
  1. #31
    Grunt
    marko94's Avatar
    Join Date
    Jan 2010
    Posts
    43
    Post Thanks / Like
    Rep Power
    15
    Reputation
    39

    Register to remove this ad
    fix Teleport NPC please .... regards ...




    › See More: [Legendary Release] Elder Repack (previously TRM Repack) 3.3.2.11403 - 32 & 64 bit



  2. Related Threads - Scroll Down after related threads if you are only interested to view replies for above post/thread

  3. #32
    Contributor
    treetree's Avatar
    Join Date
    Apr 2009
    Posts
    99
    Post Thanks / Like
    Rep Power
    17
    Reputation
    107
    .....
    Last edited by treetree; 06-03-10 at 06:35 AM.

  4. #33
    First Sergeant
    ZomgEary's Avatar
    Join Date
    Jan 2010
    Location
    Houston, TX
    Posts
    182
    Post Thanks / Like
    Rep Power
    16
    Reputation
    83
    Quote Originally Posted by marko94 View Post
    fix Teleport NPC please .... regards ...
    What's wrong with it?

  5. #34
    Beginner
    paulwantstoplay's Avatar
    Join Date
    Feb 2010
    Posts
    34
    Post Thanks / Like
    Rep Power
    15
    Reputation
    2
    Quote Originally Posted by marko94 View Post
    fix Teleport NPC please .... regards ...
    Did you try it with a GM character? I think it only works for GM characters. I didn't try this out yet.
    When I get back at home tonight I will try it out. On Falcon Wing there are two NPCs who say they're 'Teleport Dudes', but only for GMs. So I think it doesn't work for normal player characters.
    A question from me: how can I change that text? I don't think normal player characters should see those lines of text. It must be somewhere in the database.

    Everyone, thanks for the help I got until now. Lets keep this thread alive and kicking.

  6. #35
    Beginner
    Lordcrovax's Avatar
    Join Date
    Mar 2010
    Posts
    1
    Post Thanks / Like
    Rep Power
    15
    Reputation
    1

    HI!

    Hello to everyone, i'm a long timer wow users and emulator admin. I like very much this repack but i have problems with mediafire. Is so laggy and it just doesn't permit me to download the files. Any solution?alternative download mirrors?
    Thanks again
    Last edited by Lordcrovax; 02-03-10 at 08:34 AM.

  7. #36
    Scout

    Join Date
    Feb 2010
    Posts
    12
    Post Thanks / Like
    Rep Power
    15
    Reputation
    8
    on my server all the tele npcs, when u click on them they ask you if you want to make this your home. then window opens saying accept or decline

  8. #37
    The Beautiful Abomination
    CthulhuFtagn's Avatar
    Join Date
    Jan 2010
    Location
    R'lyeh
    Posts
    526
    Post Thanks / Like
    Rep Power
    20
    Reputation
    397
    Tree, I never said there was no support for the repack. Not sure where you go that idea from.

    TeleNPC was removed because I wanted to keep this as blizzlike as possible.

  9. #38
    Beginner
    wowzero's Avatar
    Join Date
    Jan 2010
    Location
    Argentina, Bs.As
    Posts
    34
    Post Thanks / Like
    Rep Power
    15
    Reputation
    1
    Congratulations on the success of this new repack, I hope you are all well. My query is this, I wanted to know if there is any way to export the database that previously had in evoxlogon and evoxcharacter (TRM) for import to realmd and characters of (Elder Repack). Because when I try to export and import the new server I get errors when loading my pj in the game when you load the mangosd not.

    mangos> SQL: SELECT FROM group_member WHERE groupId memberGuid = '1 '

    query ERROR: Unknown column 'groupId' in 'field list'

    SQL: SELECT spec, slot, character glyphs glyph FROM WHERE guid = '1 '

    query ERROR: Unknown column 'slot' in 'field list'

    Creature <Entry:90002> have 250,015 but have empty UNIT_NPC_FLAG_TRAINER trainer spell list.

  10. #39
    Scout

    Join Date
    Feb 2010
    Posts
    9
    Post Thanks / Like
    Rep Power
    15
    Reputation
    16
    Quote Originally Posted by paulwantstoplay View Post
    Did you try it with a GM character? I think it only works for GM characters. I didn't try this out yet.
    When I get back at home tonight I will try it out. On Falcon Wing there are two NPCs who say they're 'Teleport Dudes', but only for GMs. So I think it doesn't work for normal player characters.
    A question from me: how can I change that text? I don't think normal player characters should see those lines of text. It must be somewhere in the database.

    Everyone, thanks for the help I got until now. Lets keep this thread alive and kicking.
    This is the only one I tested but it does not work with or without gm. I just offers to set the hearthstone.

    teleport_issue..jpg

    EDIT: RTM is too fast in answering!
    Last edited by Calous; 02-03-10 at 09:06 AM.

  11. #40
    The Beautiful Abomination
    CthulhuFtagn's Avatar
    Join Date
    Jan 2010
    Location
    R'lyeh
    Posts
    526
    Post Thanks / Like
    Rep Power
    20
    Reputation
    397

    Register to remove this ad
    Calous, read my previous post.

    wowzero, inject this into your characters database:
    Code:
    ALTER TABLE groups
      ADD COLUMN `groupId` int(11) unsigned NOT NULL FIRST;
    
    UPDATE groups
      SET `groupId` = `leaderGuid`;
    
    ALTER TABLE groups
      DROP PRIMARY KEY,
      ADD PRIMARY KEY (`groupId`),
      ADD UNIQUE KEY (`leaderGuid`);
    
    ALTER TABLE group_member
      CHANGE COLUMN `leaderGuid` `groupId` int(11) unsigned NOT NULL;
      
    ALTER TABLE `character_action` DROP PRIMARY KEY, ADD PRIMARY KEY(`guid`,`spec`,`button`);
    
    DROP TABLE IF EXISTS `character_glyphs`;
    CREATE TABLE `character_glyphs` (
      `guid` int(11) unsigned NOT NULL,
      `spec` tinyint(3) unsigned NOT NULL DEFAULT '0',
      `slot` tinyint(3) unsigned NOT NULL DEFAULT '0',
      `glyph` int(11) unsigned NOT NULL DEFAULT '0',
      PRIMARY KEY (`guid`,`spec`,`slot`)
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
    
    -- Extract values from data blob fields and insert them into character_glyphs
    INSERT INTO `character_glyphs` SELECT `guid`, 0, 0, (CAST(SUBSTRING_INDEX(SUBSTRING_INDEX(`data`, ' ', 1319),  ' ', -1) AS UNSIGNED)) AS `glyph` FROM `characters`;
    INSERT INTO `character_glyphs` SELECT `guid`, 0, 1, (CAST(SUBSTRING_INDEX(SUBSTRING_INDEX(`data`, ' ', 1320),  ' ', -1) AS UNSIGNED)) AS `glyph` FROM `characters`;
    INSERT INTO `character_glyphs` SELECT `guid`, 0, 2, (CAST(SUBSTRING_INDEX(SUBSTRING_INDEX(`data`, ' ', 1321),  ' ', -1) AS UNSIGNED)) AS `glyph` FROM `characters`;
    INSERT INTO `character_glyphs` SELECT `guid`, 0, 3, (CAST(SUBSTRING_INDEX(SUBSTRING_INDEX(`data`, ' ', 1322),  ' ', -1) AS UNSIGNED)) AS `glyph` FROM `characters`;
    INSERT INTO `character_glyphs` SELECT `guid`, 0, 4, (CAST(SUBSTRING_INDEX(SUBSTRING_INDEX(`data`, ' ', 1323),  ' ', -1) AS UNSIGNED)) AS `glyph` FROM `characters`;
    INSERT INTO `character_glyphs` SELECT `guid`, 0, 5, (CAST(SUBSTRING_INDEX(SUBSTRING_INDEX(`data`, ' ', 1324),  ' ', -1) AS UNSIGNED)) AS `glyph` FROM `characters`;
    
    DELETE FROM character_glyphs WHERE glyph = 0;
    
    ALTER TABLE `character_action` ADD `spec` tinyint(3) unsigned NOT NULL default 0 AFTER `guid`;

 

 
Page 4 of 27 FirstFirst 123456781419 ... LastLast

Visitors found this page by searching for:

[legendary] 3.3.5 repack [mangos]

repack 3.3.5a ubunto

tree tree playerbot ahbot server repack

legendary repack 3.3.5

wow 3.3.5 private server repack elder

evo-x repack 3.3.5a playerbot free download

wow trinity 3.3.5 frostmourne id

wow 3.3.5 trinity repack bot system

mangos 3.3.3 repack bot

mangos 3.3.3 repack playerbot

legendary 3.3.5 repack mangos

elder repack 3.3.5

repack 3.3.3 mangos PlayerBot System

repack 3.3.3a playerbots

.ahbotoptions

apache

3.3.5 legendary repack

linux

repack 3.3.5 legendary

trm repack 3.3.5

battle.net convert

playerbot 3.3.5

battlenet

frostmourne 3.3.5 trinity sql

id of frostmourne in mangos repack 3.3.5a

repack mangos 3.3.5 para debian

blizzlike repack 3.3.5 debian

mangos 3.3.5 frostmourne

tree repack 3.3.5a

wow offline 3.3.5a playerbot

therealmethuselah repack

legendary repack mangos wow 3.3.3a

3.3.5. repack ahbot playerbot

download arcemu 3.3.5 pour ubuntu

wow elder repack 3.3.3

wow 3.3.5a playerbot server w7

trinity 3.3.5 playerbot

wow private server repack 3.3.5a mirror image

trm repack

Rospora lang.php Monday

legendary repack 3.3.2

trinity repack 11403

3.3.3a blizzlike repack with playerbot

elder repack 3.3 3 vmaps

elder repack 3.3 3 quest crash

WoW 3.3.5 elder repack

wow repack 11403 download

arcemu 3.3.2.11403

download legnedary repack 3.3.5a

legendry tirinity repack

SEO Blog

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
All times are GMT -5. The time now is 12:08 PM.
Powered by vBulletin® Copyright ©2000-2024, Jelsoft Enterprises Ltd.
See More links by ForumSetup.net. Feedback Buttons provided by Advanced Post Thanks / Like (Lite) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
vBulletin Licensed to: MMOPro.org