Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Conquer Online 2 > CO2 Private Server
You last visited: Today at 00:39

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



KinshiEmu : Beta Testing

Discussion on KinshiEmu : Beta Testing within the CO2 Private Server forum part of the Conquer Online 2 category.

Reply
 
Old 09/06/2009, 14:43   #16
 
elite*gold: 0
Join Date: May 2006
Posts: 828
Received Thanks: 235
Quote:
Originally Posted by ~Yuki~ View Post
I lolīd on the Netspeed xD
look on my Dedi:

Kinshi PM me if u need hosting :P
I lol'd too. Btw I looked at yours.. don't you live in Austria?
blade911 is offline  
Old 09/06/2009, 14:45   #17
 
elite*gold: 0
Join Date: Aug 2009
Posts: 12
Received Thanks: 0
Good luck with your project, Kinshi
Vayd is offline  
Old 09/06/2009, 15:05   #18
 
Zion~'s Avatar
 
elite*gold: 20
Join Date: Aug 2009
Posts: 1,344
Received Thanks: 650
Then my dedi must suck, I get 40-50.
Zion~ is offline  
Old 09/06/2009, 15:35   #19
 
CurseOfExcalibur's Avatar
 
elite*gold: 0
Join Date: May 2009
Posts: 151
Received Thanks: 28
Nice, good luck with the server.
Btw, the registering method isn't good, if some1 enters a wrong account ID you'll have another account created.
It's just a matter of time then you'll have tons of useless accounts...
Humans make mistakes.
CurseOfExcalibur is offline  
Old 09/06/2009, 15:46   #20
 
elite*gold: 0
Join Date: May 2006
Posts: 828
Received Thanks: 235
Quote:
Originally Posted by CurseOfExcalibur View Post
Nice, good luck with the server.
Btw, the registering method isn't good, if some1 enters a wrong account ID you'll have another account created.
It's just a matter of time then you'll have tons of useless accounts...
Humans make mistakes.
Lol why does it matter?
blade911 is offline  
Old 09/06/2009, 16:11   #21
 
_Emme_'s Avatar
 
elite*gold: 1142
Join Date: Aug 2006
Posts: 2,464
Received Thanks: 1,161
Quote:
Originally Posted by CurseOfExcalibur View Post
Nice, good luck with the server.
Btw, the registering method isn't good, if some1 enters a wrong account ID you'll have another account created.
It's just a matter of time then you'll have tons of useless accounts...
Humans make mistakes.
This is just a example, dunno if it'll work. And it's for INI files, cba to go into MySQL atm.

Quote:
foreach (string acc in "C:\\Accounts\\")
{
if (DateTime.Now >= System.IO.File.GetLastWriteTime("C:\\Accounts\\" + acc).AddDays(3))
{
System.IO.File.Delete("C:\\Accounts\\" + acc);
}
}
Tho, that code will delete every account that hasn't been any action in 3 days with.
_Emme_ is offline  
Old 09/06/2009, 16:19   #22
 
araXis's Avatar
 
elite*gold: 0
Join Date: Mar 2008
Posts: 418
Received Thanks: 49
Server frozen lolz
araXis is offline  
Old 09/06/2009, 16:21   #23
 
elite*gold: 20
Join Date: Jan 2008
Posts: 2,338
Received Thanks: 490
CoEmu, low bandwith -> Freeze

=/
~Yuki~ is offline  
Old 09/06/2009, 18:05   #24
 
CurseOfExcalibur's Avatar
 
elite*gold: 0
Join Date: May 2009
Posts: 151
Received Thanks: 28
Quote:
Originally Posted by EmmeTheCoder View Post
This is just a example, dunno if it'll work. And it's for INI files, cba to go into MySQL atm.Tho, that code will delete every account that hasn't been any action in 3 days with.
****, never thought of it that way o_o.
Pretty custom idea.
CurseOfExcalibur is offline  
Old 09/06/2009, 18:19   #25
 
elite*gold: 20
Join Date: Jan 2008
Posts: 2,338
Received Thanks: 490
Uhm no? Was posted already
~Yuki~ is offline  
Old 09/06/2009, 23:11   #26
 
elite*gold: 0
Join Date: Sep 2009
Posts: 26
Received Thanks: 0
Quote:
Originally Posted by EmmeTheCoder View Post
This is just a example, dunno if it'll work. And it's for INI files, cba to go into MySQL atm.



Tho, that code will delete every account that hasn't been any action in 3 days with.
OMG DUDE!

Code:
foreach (string acc in "C:\\Accounts\\")
{
if (DateTime.Now >= System.IO.File.GetLastWriteTime("C:\\Accounts\\" + acc).AddDays(3))
{
System.IO.File.Delete("C:\\Accounts\\" + acc);
}
}
you search a string in another string(thats what normaly C# reads-.-')

Code:
String Path = "C:\\Accounts\\";
foreach (string acc in System.IO.Directory.GetFiles(Path))
{
if (DateTime.Now >= System.IO.File.GetLastWriteTime(Path + acc).AddDays(3))
{
System.IO.File.Delete(Path + acc);
}
}
How do you expect people to learn if you give em ****?
ftplayer is offline  
Old 09/06/2009, 23:15   #27
 
elite*gold: 0
Join Date: Mar 2007
Posts: 369
Received Thanks: 79
are you using Binary or COEMU or hand made
becko713 is offline  
Old 09/06/2009, 23:29   #28
 
InfamousNoone's Avatar
 
elite*gold: 20
Join Date: Jan 2008
Posts: 2,012
Received Thanks: 2,882
Quote:
Originally Posted by ftplayer View Post
OMG DUDE!

Code:
foreach (string acc in "C:\\Accounts\\")
{
if (DateTime.Now >= System.IO.File.GetLastWriteTime("C:\\Accounts\\" + acc).AddDays(3))
{
System.IO.File.Delete("C:\\Accounts\\" + acc);
}
}
you search a string in another string(thats what normaly C# reads-.-')

Code:
String Path = "C:\\Accounts\\";
foreach (string acc in System.IO.Directory.GetFiles(Path))
{
if (DateTime.Now >= System.IO.File.GetLastWriteTime(Path + acc).AddDays(3))
{
System.IO.File.Delete(Path + acc);
}
}
How do you expect people to learn if you give em shit?
Code:
using System.IO;
//...

const string Path = @"C:\Accounts\";
DateTime Now = DateTime.Now;
foreach (string accFile in Directory.GetFiles(Path))
{
	if (Now >= File.GetLastWriteTime(accFile).AddDays(3))
	{
		File.Delete(accFile);
	}
}
still, lol @ emme.
InfamousNoone is offline  
Old 09/07/2009, 23:55   #29
 
elite*gold: 0
Join Date: Dec 2008
Posts: 37
Received Thanks: 12
Good luck, going to test it xP
:-)
Kokuna4 is offline  
Old 09/08/2009, 00:30   #30
 
elite*gold: 0
Join Date: May 2006
Posts: 828
Received Thanks: 235
Quote:
Originally Posted by EmmeTheCoder View Post
This is just a example, dunno if it'll work. And it's for INI files, cba to go into MySQL atm.



Tho, that code will delete every account that hasn't been any action in 3 days with.
Eww 3 days? What if someones on vacation?
blade911 is offline  
Reply


Similar Threads Similar Threads
edxSilkroadLoader5 Beta Testing
02/21/2017 - SRO Hacks, Bots, Cheats & Exploits - 185 Replies
Click here for the latest version. (Post #105) Compile Note: If you don't have boost setup or installed, you can make the following change so you no longer need boost. Open "shared_types.h" and change the code to the following: /* #include <boost/cstdint.hpp> using boost::uint64_t;
CabalBrothers [BETA TESTING]
01/14/2009 - Cabal Private Server - 40 Replies
Hi all, it was a big mistake to do this topic+forum..I know now it was a big mistake for me. And srry to all cuz all must w8 fo this.I'm very very sorry to adekz server to cuz i wasn't loyal to it and i quit it for this fake server. Sorry to all cuz all must w8 :( PLEASE CLOSE THIS TOPIC 4 EVER!
botsmall's bot beta testing
09/19/2007 - Dekaron - 13 Replies
Well,go to BOTSMALL ---- A Professional Global Sub-MMO Bot Service Portal and look at 2moons bot. i downloaded the bot,but it won't work untill i send the ID to that mail. i sent it,and now waiting for a result. anyone managed to use the bot till now?



All times are GMT +2. The time now is 00:39.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.