Sandbox for Legion Beta menu

User Tag List

Page 95 of 95 FirstFirst ... 459192939495
Results 1,411 to 1,422 of 1422
  1. #1411
    doityourself's Avatar ★ Elder ★
    Reputation
    1424
    Join Date
    Nov 2008
    Posts
    843
    Thanks G/R
    35/448
    Trade Feedback
    0 (0%)
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    Sandbox is like finished... but it doesn't make sense to release anything now, because the current BfA does not start

    Sandbox for Legion Beta
  2. #1412
    Mechl's Avatar Member
    Reputation
    3
    Join Date
    Nov 2007
    Posts
    106
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by king48488 View Post
    Sandbox is like finished... but it doesn't make sense to release anything now, because the current BfA does not start
    What do you mean?

  3. #1413
    doityourself's Avatar ★ Elder ★
    Reputation
    1424
    Join Date
    Nov 2008
    Posts
    843
    Thanks G/R
    35/448
    Trade Feedback
    0 (0%)
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Mechl View Post
    What do you mean?
    Download the BfA client and try to start it. It won't launch

  4. #1414
    Mechl's Avatar Member
    Reputation
    3
    Join Date
    Nov 2007
    Posts
    106
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by king48488 View Post
    Download the BfA client and try to start it. It won't launch
    That's odd.

  5. #1415
    ThatGuyXYZ's Avatar Member
    Reputation
    44
    Join Date
    Feb 2013
    Posts
    4
    Thanks G/R
    0/5
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by king48488 View Post
    Sandbox is like finished... but it doesn't make sense to release anything now, because the current BfA does not start
    Its an exception raised in the loader VEH. The handler is called again and again which results in a stack overflow.

    Its fixable by patching those bytes:

    .text:000000014002540C F4 hlt
    ->
    .text:0000000140025413 F4 hlt

    .text:000000014002BD93 F4 hlt
    ->
    .text:000000014002BDA5 F4 hlt

    .text:000000014002D532 F4 hlt
    ->
    .text:000000014002D53D F4 hlt

    .text:000000014002DB7B F4 hlt

    .text:000000014002ED89 F4 hlt
    ->
    .text:000000014002EDA7 F4 hlt

    .text:0000000140026D67 F4 hlt
    ->
    .text:0000000140026D79 F4 hlt
    nop all hlt opcodes in those ranges and the loader will finish successfully.

    edit:

    I wont upload the binary but just run this patch:

    byte[] data = File.ReadAllBytes("WoWB-64.exe");
    List<int> offsets = new List<int>() {
    149511, 149512, 149513, 149514, 149515, 149516, 149517, 149518, 149519, 149520, 149521, 149522,
    149523, 156007, 156008, 156009, 156010, 156011, 156012, 156013, 156014, 156015, 156016, 156017,
    156018, 156019, 156020, 156021, 156022, 156023, 156024, 156025, 176531, 176532, 176533, 176534,
    176535, 176536, 176537, 176538, 176539, 176540, 176541, 176542, 176543, 176544, 176545, 176546,
    176547, 176548, 176549, 182578, 182579, 182580, 182581, 182582, 182583, 182584, 182585, 182586,
    182587, 182588, 182589, 184187, 188809, 188810, 188811, 188812, 188813, 188814, 188815, 188816,
    188817, 188818, 188819, 188820, 188821, 188822, 188823, 188824, 188825, 188826, 188827, 188828,
    188829, 188830, 188831, 188832, 188833, 188834, 188835, 188836, 188837, 188838, 188839
    };
    using (BinaryWriter writer = new BinaryWriter(new MemoryStream(data)))
    {
    foreach (var offset in offsets)
    {
    writer.BaseStream.Position = offset;
    writer.Write((byte)0x90);
    }
    }
    File.WriteAllBytes("WoWB-64Fix.exe", data);
    WoWB-64Fix.exe will start without crash
    Last edited by ThatGuyXYZ; 01-27-2018 at 08:37 AM.

  6. Thanks Flavius, mach1920, Sklug, vvvat, doityourself (5 members gave Thanks to ThatGuyXYZ for this useful post)
  7. #1416
    doityourself's Avatar ★ Elder ★
    Reputation
    1424
    Join Date
    Nov 2008
    Posts
    843
    Thanks G/R
    35/448
    Trade Feedback
    0 (0%)
    Mentioned
    6 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by ThatGuyXYZ View Post
    Its an exception raised in the loader VEH. The handler is called again and again which results in a stack overflow.

    Its fixable by patching those bytes:



    nop all hlt opcodes in those ranges and the loader will finish successfully.

    edit:

    I wont upload the binary but just run this patch:



    WoWB-64Fix.exe will start without crash
    you was really bored I guess. lol
    but ty^^

    //Marlamin said it's a weird way to say thanks, so..

    Thanks you for your great work
    Last edited by doityourself; 01-27-2018 at 09:57 AM.

  8. Thanks nanoneo (1 members gave Thanks to doityourself for this useful post)
  9. #1417
    Flavius's Avatar Contributor
    Reputation
    105
    Join Date
    Sep 2007
    Posts
    77
    Thanks G/R
    24/30
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Works, thanks ThatGuyXYZ
    !

  10. #1418
    nanoneo's Avatar Member
    Reputation
    10
    Join Date
    Mar 2008
    Posts
    61
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Greetings,

    Thanks for your work!


    Best Regards
    Last edited by nanoneo; 01-27-2018 at 01:06 PM.

  11. #1419
    TwoPatch's Avatar Member
    Reputation
    1
    Join Date
    Jan 2018
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can someone help me out here? So how does this Alpha download work, I downloaded the Alpha from the other thread but cannot open it.
    I'm dying to get the new beta models (example: The ferret companion pet / Vulpera / New Horse Mounts) in WoW Model Viewer... So, how do I do this exactly, I'm very confused.

  12. #1420
    Mechl's Avatar Member
    Reputation
    3
    Join Date
    Nov 2007
    Posts
    106
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    How's it looking for a sandbox update now that we have a working exe?

  13. #1421
    vvvat's Avatar Contributor
    Reputation
    263
    Join Date
    May 2008
    Posts
    521
    Thanks G/R
    143/51
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by king48488 View Post
    ...

    Thanks you for your great work
    now we are waiting for yours great work

  14. #1422
    Oniforever86's Avatar Member
    Reputation
    1
    Join Date
    Jan 2018
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hmmm. The 7.3.5.25928 sandbox works for the most part and I can do the major commands like fly, scale, run\flightspeed etc, but it seems some commands such as morph and commentator don't work at all.

    Commentator just gives me a load screen and changes nothing(doesn't disconnect the camera from the character at all), and the only functionality the morph command has is to change spawned NPCs into little checkered boxes(usually used for NYI\WIP models). Does absolutely nothing when used to try and morph my own character no matter what npc or model ID I use.

    Are there any more updates or bug fixes planned for the legion sandbox or are you just going to be focusing on the BFA alpha\beta client now, King?

Page 95 of 95 FirstFirst ... 459192939495

Similar Threads

  1. [Trading] Trading LoL account with Victorious Riven skin for Legion Beta code.
    By Bisonaffinity in forum World of Warcraft Buy Sell Trade
    Replies: 0
    Last Post: 05-24-2016, 08:34 AM
  2. [Trading] Honorbuddy lifetime 3 sessions for legion beta key
    By mjlj in forum World of Warcraft Buy Sell Trade
    Replies: 0
    Last Post: 05-23-2016, 04:27 AM
  3. [Buying] Looking for LEGION BETA key/account/rent
    By James_52 in forum World of Warcraft Buy Sell Trade
    Replies: 2
    Last Post: 05-17-2016, 11:50 PM
  4. sandbox for wotlk beta 8788
    By theimmortal in forum World of Warcraft General
    Replies: 1
    Last Post: 08-21-2008, 04:04 PM
All times are GMT -5. The time now is 07:12 PM. 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