Results 1 to 15 of 32

Hybrid View

  1. #1
    LilGho$t's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    419
    Reputation
    9
    Thanks
    330
    My Mood
    Twisted
    Quote Originally Posted by Jason View Post


    "The CPU processes .NET code slower" Yes, you're absolutely right, the CPU recognises when the machine code its executing was originally part of a .NET assembly and goes " fuck you guys, ima slow down 'cos i'm a C++ fanboy".

    Get a real argument :/
    It has to convert it to assembly to run it. Either way, if you code this in visual basic change the cpu-target to be set for 32-Bit (even if you are on 64) as you'll result in a faster runtime.

  2. #2
    master131's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Melbourne, Australia
    Posts
    8,858
    Reputation
    3438
    Thanks
    101,673
    My Mood
    Breezy
    Quote Originally Posted by LilGho$t View Post
    It has to convert it to assembly to run it. Either way, if you code this in visual basic change the cpu-target to be set for 32-Bit (even if you are on 64) as you'll result in a faster runtime.
    Fuck off please, you don't know what you're talking about. And if it was made for 12 year olds, why haven't I seen any injectable VB.NET hacks for Combat Arms yet?
    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]

  3. The Following User Says Thank You to master131 For This Useful Post:

    Xipher (05-19-2012)

  4. #3
    Xipher's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Location
    Melbourne, AU.
    Posts
    1,780
    Reputation
    472
    Thanks
    1,690
    My Mood
    Innocent
    Quote Originally Posted by master131 View Post


    Fuck off please, you don't know what you're talking about. And if it was made for 12 year olds, why haven't I seen any injectable VB.NET hacks for Combat Arms yet?
    He doesn't know what he's talking about. It's like someone fused L80mans, Chocolate and Justiniscool together. Wait nah, that would be a shitstorm.
    But, he's bad okay :P

  5. #4
    LilGho$t's Avatar
    Join Date
    Nov 2011
    Gender
    male
    Posts
    419
    Reputation
    9
    Thanks
    330
    My Mood
    Twisted
    Quote Originally Posted by master131 View Post


    Fuck off please, you don't know what you're talking about. And if it was made for 12 year olds, why haven't I seen any injectable VB.NET hacks for Combat Arms yet?
    because 12 years can't code that type of stuff.

    And, from statistical time tests, targeting 32-bit with vb.NET code does result in a faster runtime.

    Also to back up the statement about c++ running faster than vb.NET.
    time it takes for c++ to count to 1000000000: 8.125 seconds
    time it takes for VB to count to 1000000000 : 19.203 seconds

    and here's the codes used on the test:
    Vb:
    Code:
    Option Explicit
    Private Declare Function GetTickCount Lib "kernel32" () As Long
    Dim firstnumber As Double
    Dim secondnumber As Double
    Dim thirdnumber As Double
    
    Private Sub Form_Load()
    secondnumber = 0
    firstnumber = GetTickCount()
    
    While secondnumber <= 1000000000#
    secondnumber = secondnumber + 1
    Wend
    thirdnumber = GetTickCount()
    MsgBox "time taken to count to 1000000000: " & thirdnumber - firstnumber
    End Sub
    c++:
    Code:
    #include "stdafx.h"
    #include "iostream.h"
    #include "windows.h"
    
    void main()
    {
    	double firstnumber;
    	double secondnumber=0;
    	double thirdnumber;
    
    	firstnumber = GetTickCount();
    
    	while (secondnumber <= 1000000000) 
    		{
    			secondnumber++;
    		}
    	thirdnumber = GetTickCount();
    	cout << "time taken: " << thirdnumber - firstnumber;
    }
    Last edited by LilGho$t; 05-19-2012 at 07:04 AM.

Similar Threads

  1. New D3D Hack has been released!
    By Dave84311 in forum Hack/Release News
    Replies: 23
    Last Post: 05-29-2009, 08:02 AM
  2. Warrock crashes when using this code in my D3D hack...
    By k2hacker in forum C++/C Programming
    Replies: 0
    Last Post: 07-21-2008, 05:04 PM
  3. hack codes
    By tristan... in forum WarRock - International Hacks
    Replies: 4
    Last Post: 09-25-2007, 10:40 AM
  4. Need help with my warrock hack code
    By dikketr0l in forum Visual Basic Programming
    Replies: 6
    Last Post: 08-04-2007, 06:36 AM
  5. D3D Hack (Old)
    By PBFUCKER in forum WarRock - International Hacks
    Replies: 10
    Last Post: 06-09-2007, 09:00 AM