Originally posted by Chrom3D
Alright, Yeah, heard they have a pretty good HWID protection.
We are getting a little bit off topic, but how your doing with C#? Any tips? While I learn I always forget were to place the statements and so on. Very annoying...
Their HWID protection is like any other HWID, they send you a program and it fetches your hardware ID (HWID). You just send it and then they build it into the program, if it matches your hardware then it executes if not then it does not run.
(If you want to talk anymore on that just PM me)
---
I'm still learning but I'm teaching myself better methods.
You if you teach yourself loops, life is easier. Example,
for (int counter = 0; counter < 100; counter++)
{
//Place code here to be looped
]
This is a great way to create a quick int which is counter, you have declared its value as 0 and have stated that the program will loop this line of code until it is greater than the value of 100 so when it reaches 101 it ends the loop process. counter++ obviously just increases the value of the int each time it loops.
You also have Do-While loops
int x = 0;
do{
x++
}while(x<10)
Here is a great page, you can look at it and get a better understanding, it says C/C++ but it all can used for C# programming as well.