Thread: .net Issue

Page 2 of 2 FirstFirst 12
Results 16 to 29 of 29
  1. #16
    Janitor's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    MPGH Reports
    Posts
    16,255
    Reputation
    3259
    Thanks
    7,214
    Quote Originally Posted by Antipathy View Post
    Ameer, don't be mad at me
    Ain't even made
    You might get infracted/warned if first time ...

  2. #17
    Gray's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    Sweden
    Posts
    13,557
    Reputation
    2516
    Thanks
    10,618
    Quote Originally Posted by Splinterrr View Post

    Ain't even made
    You might get infracted/warned if first time ...
    But but.. I was merely asking for some help.
    Be gentle with me.

  3. #18
    Janitor's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    MPGH Reports
    Posts
    16,255
    Reputation
    3259
    Thanks
    7,214
    Quote Originally Posted by Antipathy View Post


    But but.. I was merely asking for some help.
    Be gentle with me.
    Programming - MPGH - MultiPlayer Game Hacking & Cheats - Hacks, Cheats, Downloads, Trainers, Games <==

  4. #19
    Gray's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    Sweden
    Posts
    13,557
    Reputation
    2516
    Thanks
    10,618
    As it is not me who is coding, is this really considered a programming issue?
    Seems more like a general problem to me.

  5. #20
    radnomguywfq3's Avatar
    Join Date
    Jan 2007
    Gender
    male
    Location
    J:\E\T\A\M\A\Y.exe
    Posts
    8,858
    Reputation
    381
    Thanks
    1,823
    My Mood
    Sad
    Quote Originally Posted by Antipathy View Post


    Ameer, don't be mad at me



    My OS is run from C (obviously) and as I don't want it clogged up from all my crap I have almost everything I run on my D:drive.
    K I'm assuming that Steam was installed on D then.

    This should work, but I won't make any promises. It assumes steam is at:
    D:\Program Files (x86)\Steam\steam.exe
    or
    D:\Program Files\Steam\steam.exe

    Really I should have used environment variables now that I look back on it but w\e. I disabled the saving feature so avoid that (it was too much work to compile)
    Last edited by radnomguywfq3; 06-30-2013 at 04:09 AM.



    There are two types of tragedies in life. One is not getting what you want, the other is getting it.

    If you wake up at a different time in a different place, could you wake up as a different person?


  6. #21
    Gray's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    Sweden
    Posts
    13,557
    Reputation
    2516
    Thanks
    10,618
    Quote Originally Posted by Adolfmay View Post
    K I'm assuming that Steam was installed on D then.

    This should work, but I won't make any promises. It assumes steam is at:
    D:\Program Files (x86)\Steam\steam.exe
    or
    D:\Program Files\Steam\steam.exe

    Really I should have used environment variables now that I look back on it but w\e. I disabled the saving feature so avoid that (it was too much work to compile
    You can now remove the link, thanks for your help.
    Gonna try it out right away.

  7. #22
    radnomguywfq3's Avatar
    Join Date
    Jan 2007
    Gender
    male
    Location
    J:\E\T\A\M\A\Y.exe
    Posts
    8,858
    Reputation
    381
    Thanks
    1,823
    My Mood
    Sad
    No one here gives a blue fuck about where you post your shit if you have > 10 posts. Plus infractions literally mean nothing. I've gotten like 6.



    There are two types of tragedies in life. One is not getting what you want, the other is getting it.

    If you wake up at a different time in a different place, could you wake up as a different person?


  8. #23
    Gray's Avatar
    Join Date
    Nov 2012
    Gender
    male
    Location
    Sweden
    Posts
    13,557
    Reputation
    2516
    Thanks
    10,618
    Quote Originally Posted by Adolfmay View Post
    No one here gives a blue fuck about where you post your shit if you have > 10 posts. Plus infractions literally mean nothing. I've gotten like 6.
    I've gotten 0, but anyhow.
    It works, thanks for your help - I just have to locate the missing maps, but I can do that on my own.
    Here's some rep.

  9. #24
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,669
    My Mood
    Breezy
    Using the exception information you posted, I found the program and function where it fails.

    C#:
    Code:
    private void Button1_Click(object sender, EventArgs e)
    {
        if (this.ListBox1.SelectedItems.Count == 1)
        {
            ProcessStartInfo startInfo = new ProcessStartInfo();
            if (Operators.ConditionalCompareObjectEqual(GenerateArchitecture(), 0x40, false))
            {
                startInfo.FileName = @"C:\Program Files (x86)\Steam\steam.exe";
            }
            else
            {
                startInfo.FileName = @"C:\Program Files\Steam\steam.exe";
            }
    
    // ..... Redacted
    It assumes the Steam is installed on the C: drive. To solve this, create a symbolic link in Command Prompt:
    32-bit:
    Code:
    mklink /D "C:\Program Files\Steam" "<path to actual Steam directory>"
    64-bit:
    Code:
    mklink /D "C:\Program Files (x86)\Steam" "<path to actual Steam directory>"
    Donate:
    BTC: 1GEny3y5tsYfw8E8A45upK6PKVAEcUDNv9


    Handy Tools/Hacks:
    Extreme Injector v3.7.3
    A powerful and advanced injector in a simple GUI.
    Can scramble DLLs on injection making them harder to detect and even make detected hacks work again!

    Minion Since: 13th January 2011
    Moderator Since: 6th May 2011
    Global Moderator Since: 29th April 2012
    Super User/Unknown Since: 23rd July 2013
    'Game Hacking' Team Since: 30th July 2013

    --My Art--
    [Roxas - Pixel Art, WIP]
    [Natsu - Drawn]
    [Natsu - Coloured]


    All drawings are coloured using Photoshop.

    --Gifts--
    [Kyle]

  10. #25
    radnomguywfq3's Avatar
    Join Date
    Jan 2007
    Gender
    male
    Location
    J:\E\T\A\M\A\Y.exe
    Posts
    8,858
    Reputation
    381
    Thanks
    1,823
    My Mood
    Sad
    Quote Originally Posted by master131 View Post
    Using the exception information you posted, I found the program and function where it fails.

    C#:
    Code:
    private void Button1_Click(object sender, EventArgs e)
    {
        if (this.ListBox1.SelectedItems.Count == 1)
        {
            ProcessStartInfo startInfo = new ProcessStartInfo();
            if (Operators.ConditionalCompareObjectEqual(GenerateArchitecture(), 0x40, false))
            {
                startInfo.FileName = @"C:\Program Files (x86)\Steam\steam.exe";
            }
            else
            {
                startInfo.FileName = @"C:\Program Files\Steam\steam.exe";
            }
    
    // ..... Redacted
    It assumes the Steam is installed on the C: drive. To solve this, create a symbolic link in Command Prompt:
    32-bit:
    Code:
    mklink /D "C:\Program Files\Steam" "<path to actual Steam directory>"
    64-bit:
    Code:
    mklink /D "C:\Program Files (x86)\Steam" "<path to actual Steam directory>"
    You can't use mklink accross storage volumes. Two different filesystems, and symbolic links exist in the filesystem.

    Unless I have misunderstood the mklink tool.

    Anyway, we've already resolved the problem.



    There are two types of tragedies in life. One is not getting what you want, the other is getting it.

    If you wake up at a different time in a different place, could you wake up as a different person?


  11. #26
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,669
    My Mood
    Breezy
    Quote Originally Posted by Adolfmay View Post
    You can't use mklink accross storage volumes. Two different filesystems, and symbolic links exist in the filesystem.
    I've tested them across storage volumes and it works fine but they were both formatted as NTFS.

    PS - Symbolic links work across different file systems whereas hardlinks don't.
    Last edited by master131; 06-30-2013 at 04:27 AM.
    Donate:
    BTC: 1GEny3y5tsYfw8E8A45upK6PKVAEcUDNv9


    Handy Tools/Hacks:
    Extreme Injector v3.7.3
    A powerful and advanced injector in a simple GUI.
    Can scramble DLLs on injection making them harder to detect and even make detected hacks work again!

    Minion Since: 13th January 2011
    Moderator Since: 6th May 2011
    Global Moderator Since: 29th April 2012
    Super User/Unknown Since: 23rd July 2013
    'Game Hacking' Team Since: 30th July 2013

    --My Art--
    [Roxas - Pixel Art, WIP]
    [Natsu - Drawn]
    [Natsu - Coloured]


    All drawings are coloured using Photoshop.

    --Gifts--
    [Kyle]

  12. #27
    radnomguywfq3's Avatar
    Join Date
    Jan 2007
    Gender
    male
    Location
    J:\E\T\A\M\A\Y.exe
    Posts
    8,858
    Reputation
    381
    Thanks
    1,823
    My Mood
    Sad
    Quote Originally Posted by master131 View Post
    I've tested them across storage volumes and it works fine but they were both formatted as NTFS.

    PS - Symbolic links work across different file systems whereas hardlinks don't.
    Yeah just looked it up, you are correct. I was thinking of hard links.



    There are two types of tragedies in life. One is not getting what you want, the other is getting it.

    If you wake up at a different time in a different place, could you wake up as a different person?


  13. #28
    Janitor's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Location
    MPGH Reports
    Posts
    16,255
    Reputation
    3259
    Thanks
    7,214
    Quote Originally Posted by Adolfmay View Post
    No one here gives a blue fuck about where you post your shit if you have > 10 posts. Plus infractions literally mean nothing. I've gotten like 6.
    That explains why members are creating disputes for this reason.
    What a GMod .

  14. #29
    fireXtract's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    In a chair
    Posts
    64
    Reputation
    10
    Thanks
    434
    My Mood
    Amazed
    Just in case anybody had this problem also im making another version with sandboxie/seperate drive support. Also the reason i completely ignored that feature is because I initially created the program for a friend an I that were tired of copypasting launch options into steam. I never got any responses on the first 2 posts of the program either, but I am glad the bug was found.


Page 2 of 2 FirstFirst 12

Similar Threads

  1. .NET section?
    By smacksnox in forum Programming
    Replies: 4
    Last Post: 08-27-2006, 12:14 AM
  2. HackShardGaming.net says Fuck MPGH
    By sf0d in forum General
    Replies: 32
    Last Post: 07-26-2006, 09:05 PM
  3. [Help] Atom API with Visual Basic 6.0 or .NET
    By Bull3t in forum Visual Basic Programming
    Replies: 5
    Last Post: 07-23-2006, 09:21 AM
  4. Me r MAD.. GONNA DDOS WarRock.net :)
    By System79 in forum WarRock - International Hacks
    Replies: 14
    Last Post: 06-19-2006, 05:06 PM
  5. Gangsterhood.net
    By supatanka in forum Hack Requests
    Replies: 0
    Last Post: 01-22-2006, 01:42 PM