[Beta] Model swapper for 4.0.1+ menu

User Tag List

Page 8 of 18 FirstFirst ... 456789101112 ... LastLast
Results 106 to 120 of 261
  1. #106
    Barrt73Rus's Avatar Banned
    Reputation
    171
    Join Date
    May 2009
    Posts
    1,272
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by SaintDeo View Post
    Problem with ruRU locale. Cache here.

    bump.
    this my ruru cache
    Item-sparse.adb 1.39mb
    Filebeam - Beam up that File Scottie!

    [Beta] Model swapper for 4.0.1+
  2. #107
    TOM_RUS's Avatar Legendary
    Reputation
    914
    Join Date
    May 2008
    Posts
    699
    Thanks G/R
    0/52
    Trade Feedback
    0 (0%)
    Mentioned
    1 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by SaintDeo View Post
    Problem with ruRU locale. Cache here.


    Can be corrected so:
    change
    >GetZeroTerm(FileStream bStream, BinaryReader bReader, int postion)
    to something like this

    Code:
       1.              private string GetZeroTerm(FileStream bStream, BinaryReader bReader, int postion)
       2.              {
       3.                  bStream.Position = postion;//Set the start postion
       4.                  var returnString = "";
       5.                  byte cChar;
       6.                  var tempString = "";
       7.                  bool ruRU = false; //if ruRU cache
       8.                  while ((cChar = bReader.ReadByte()) != 0) //While there is no null keep reading
       9.                  {
      10.                       tempString = ((char)cChar).ToString();
      11.                      if (ruRU & cChar > 143)
      12.                      {
      13.                          tempString = ((char)(cChar + 896)).ToString(); //Save each byte
      14.                          ruRU = false;
      15.                      }
      16.                      if (ruRU & cChar < 144)
      17.                      {
      18.                          tempString = ((char)(cChar + 960)).ToString();
      19.                          ruRU = false;
      20.                     }
      21.       
      22.                      if (cChar == 209 || cChar == 208)
      23.                      {
      24.                          ruRU = true;
      25.                          tempString = "";
      26.                      }
      27.                      returnString += tempString;
      28.                  }
      29.                  return returnString;//Give me the string
      30.              }
    This is just wrong.

    This should work for all locales:
    Code:
    using System.Text;
    
    private string GetZeroTerm(FileStream bStream, BinaryReader bReader, int position)
    {
        bStream.Position = position;//Set the start position
        List<byte> bytes = new List<byte>();
        byte b;
        while ((b = bReader.ReadByte()) != 0) //While there is no null keep reading
        {
            bytes.Add(b);
        }
        return Encoding.UTF8.GetString(bytes.ToArray());
    }
    Last edited by TOM_RUS; 11-07-2010 at 01:33 PM.

  3. #108
    aMondia's Avatar Active Member
    Reputation
    21
    Join Date
    Mar 2007
    Posts
    26
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you!
    Remember, "fist" can be a verb...

  4. #109
    Glitchy's Avatar ★ Elder ★
    Reputation
    1277
    Join Date
    Jun 2007
    Posts
    985
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by TOM_RUS View Post
    This is just wrong.

    This should work for all locales:
    Code:
    using System.Text;
    
    private string GetZeroTerm(FileStream bStream, BinaryReader bReader, int position)
    {
        bStream.Position = position;//Set the start position
        List<byte> bytes = new List<byte>();
        byte b;
        while ((b = bReader.ReadByte()) != 0) //While there is no null keep reading
        {
            bytes.Add(b);
        }
        return Encoding.UTF8.GetString(bytes.ToArray());
    }
    Thanks for this i will add the changes and commit it, i will also start uploading the compile exe in the svn

  5. #110
    Maaera's Avatar Private
    Reputation
    1
    Join Date
    Nov 2010
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hey glitch i still need help and postet my cache on page 7^^

  6. #111
    atomt's Avatar Member
    Reputation
    1
    Join Date
    Mar 2008
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Update on what I posted earlier: tried uninstalling wow, removing all traces of files and folders linked to it, removing all registry entries.

    The edits I made STILL show up when the game is started without the launcher. Almost want to go for a complete reinstall of windows now...

  7. #112
    beskytter makt's Avatar Member
    Reputation
    5
    Join Date
    Jan 2008
    Posts
    60
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    sorry to be a pest glitchy, but is MES backwards compatible? like is there a way i could tell it to use old version WoW files?
    i wouldnt think it would be,
    but as they say, never know less you ask

    i use WoW 3.3.5a, and want to avoid swapping manually
    and asking you if MES would work, or if theres anything else i can try, is my last resort before attempting not to epic fail on my own

  8. #113
    carom's Avatar Private
    Reputation
    1
    Join Date
    Nov 2010
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    still cant get this to work, getting the same error as before...the one kryptik postet on page 7.
    downloaded the new version, after chosing my cache path it said some data of my wdb were already in use of another prog (wow wasnt running!) and so i ended up having the same problem as posted before...
    help please

  9. #114
    Maaera's Avatar Private
    Reputation
    1
    Join Date
    Nov 2010
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    still need help postet my problem + cache at page 7

  10. #115
    JunkyVirus's Avatar Master Sergeant
    Reputation
    2
    Join Date
    Oct 2010
    Posts
    98
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hmm, can't install the program :S
    Norton says it isn't safe so it keeps removing it :P
    Really annoying :P Hahah

    Okey, I took a risk and turned off the firewall and DL the app, when opened it tells me to manually select the Cache folder so I do, but then nothing happens the program non interactive and I can't do anything, and I can't close it :P

    I don't know if it helps but it also says that I'm running on V.2, and my swaps ingame are starting to turn back somehow xD :P
    Last edited by JunkyVirus; 11-09-2010 at 12:14 AM.

  11. #116
    aaron6663382's Avatar Member
    Reputation
    11
    Join Date
    Oct 2008
    Posts
    31
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm having the same problems as Carom it keeps saying my item.adb file is in use by another program and doesn't work also wow keeps wiping and replacing the file everytime i log out.

  12. #117
    Maaera's Avatar Private
    Reputation
    1
    Join Date
    Nov 2010
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    still wtb help because i havent got an answer yet

  13. #118
    ortiloco's Avatar Member
    Reputation
    1
    Join Date
    May 2008
    Posts
    10
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by beskytter makt View Post
    sorry to be a pest glitchy, but is MES backwards compatible? like is there a way i could tell it to use old version WoW files?
    i wouldnt think it would be,
    but as they say, never know less you ask

    i use WoW 3.3.5a, and want to avoid swapping manually
    and asking you if MES would work, or if theres anything else i can try, is my last resort before attempting not to epic fail on my own
    You can use the old MES.

  14. #119
    b0omsmack's Avatar Member
    Reputation
    1
    Join Date
    Jan 2009
    Posts
    21
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ur THE BEST, i would have give you all my rep if i had some:..

  15. #120
    Jerusalem's Avatar Member
    Reputation
    26
    Join Date
    Nov 2007
    Posts
    77
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey glitchy, thanks for your work. Long time user here; however, I seem to be running into a problem this time around:
    See the end of this message for details on invoking
    just-in-time (JIT) debugging instead of this dialog box.

    ************** Exception Text **************
    System.IndexOutOfRangeException: Index was outside the bounds of the array.
    at ModelSwapper2.Classes.FileStuff.OpenItemSparse(String vFile)
    at ModelSwapper2.Classes.FileStuff.LoadCache(TreeView tCacheTreeview, TreeView tItemTreeview, TreeView tItemSetsTreeview)
    at ModelSwapper2.MainForm.CheckStartup()
    at ModelSwapper2.MainForm.MainForm_Load(Object sender, EventArgs e)
    at System.Windows.Forms.Form.OnLoad(EventArgs e)
    at System.Windows.Forms.Form.OnCreateControl()
    at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
    at System.Windows.Forms.Control.CreateControl()
    at System.Windows.Forms.Control.WmShowWindow(Message& m)
    at System.Windows.Forms.Control.WndProc(Message& m)
    at System.Windows.Forms.ScrollableControl.WndProc(Message& m)
    at System.Windows.Forms.ContainerControl.WndProc(Message& m)
    at System.Windows.Forms.Form.WmShowWindow(Message& m)
    at System.Windows.Forms.Form.WndProc(Message& m)
    at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
    at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
    at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)


    ************** Loaded Assemblies **************
    mscorlib
    Assembly Version: 2.0.0.0
    Win32 Version: 2.0.50727.4206 (VistaSP2GDR.050727-4200)
    CodeBase: file:///C:/Windows/Microsoft.NET/Framework/v2.0.50727/mscorlib.dll
    ----------------------------------------
    ModelSwapper
    Assembly Version: 2.0.0.0
    Win32 Version: 2.0.0.0
    CodeBase: file:///C:/Users/Jay/Downloads/ModelSwapper.exe
    ----------------------------------------
    System.Windows.Forms
    Assembly Version: 2.0.0.0
    Win32 Version: 2.0.50727.4016 (NetFxQFE.050727-4000)
    CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Windows.Forms/2.0.0.0__b77a5c561934e089/System.Windows.Forms.dll
    ----------------------------------------
    System
    Assembly Version: 2.0.0.0
    Win32 Version: 2.0.50727.4205 (VistaSP2GDR.050727-4200)
    CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System/2.0.0.0__b77a5c561934e089/System.dll
    ----------------------------------------
    System.Drawing
    Assembly Version: 2.0.0.0
    Win32 Version: 2.0.50727.4016 (NetFxQFE.050727-4000)
    CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Drawing/2.0.0.0__b03f5f7f11d50a3a/System.Drawing.dll
    ----------------------------------------
    Microsoft.VisualBasic
    Assembly Version: 8.0.0.0
    Win32 Version: 8.0.50727.4016 (NetFxQFE.050727-4000)
    CodeBase: file:///C:/Windows/assembly/GAC_MSIL/Microsoft.VisualBasic/8.0.0.0__b03f5f7f11d50a3a/Microsoft.VisualBasic.dll
    ----------------------------------------
    System.Configuration
    Assembly Version: 2.0.0.0
    Win32 Version: 2.0.50727.4016 (NetFxQFE.050727-4000)
    CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Configuration/2.0.0.0__b03f5f7f11d50a3a/System.Configuration.dll
    ----------------------------------------
    System.Xml
    Assembly Version: 2.0.0.0
    Win32 Version: 2.0.50727.4016 (NetFxQFE.050727-4000)
    CodeBase: file:///C:/Windows/assembly/GAC_MSIL/System.Xml/2.0.0.0__b77a5c561934e089/System.Xml.dll
    ----------------------------------------

    ************** JIT Debugging **************
    To enable just-in-time (JIT) debugging, the .config file for this
    application or computer (machine.config) must have the
    jitDebugging value set in the system.windows.forms section.
    The application must also be compiled with debugging
    enabled.

    For example:

    <configuration>
    <system.windows.forms jitDebugging="true" />
    </configuration>

    When JIT debugging is enabled, any unhandled exception
    will be sent to the JIT debugger registered on the computer
    rather than be handled by this dialog box.

Page 8 of 18 FirstFirst ... 456789101112 ... LastLast

Similar Threads

  1. [Upgrade] New itemsets.txt for Model Swapper
    By Mudkip in forum World of Warcraft Model Editing
    Replies: 66
    Last Post: 10-14-2012, 12:35 PM
  2. [Beta] Item Model Swapper for 4.0.3a
    By TOM_RUS in forum WoW ME Tools & Guides
    Replies: 187
    Last Post: 09-01-2012, 02:48 AM
  3. Item model swapper for 1.12
    By Ravageher in forum WoW ME Questions and Requests
    Replies: 2
    Last Post: 04-30-2011, 05:59 PM
  4. [Guide] Making custom itemsets for Glitchy's model swapper
    By trxdraxon in forum WoW ME Tools & Guides
    Replies: 0
    Last Post: 10-22-2009, 06:25 AM
  5. [Guide] Manual updating items.txt for model swapper
    By trxdraxon in forum WoW ME Tools & Guides
    Replies: 1
    Last Post: 09-25-2009, 10:08 AM
All times are GMT -5. The time now is 04:48 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