|
You last visited: Today at 07:53
Advertisement
[GUIDE] How to create a Conquer 5375 Server.
Discussion on [GUIDE] How to create a Conquer 5375 Server. within the CO2 PServer Guides & Releases forum part of the CO2 Private Server category.
10/12/2011, 15:38
|
#16
|
elite*gold: 0
Join Date: Oct 2008
Posts: 12
Received Thanks: 0
|
who can tell me the commands for this source? items and gw.
Thank you!
|
|
|
10/12/2011, 17:55
|
#17
|
elite*gold: 0
Join Date: Jun 2009
Posts: 611
Received Thanks: 195
|
Quote:
Originally Posted by mario_o0o
who can tell me the commands for this source? items and gw.
Thank you!
|
Failure....
Check your PacketHandler.cs, you'll find the commands.
|
|
|
10/13/2011, 15:43
|
#18
|
elite*gold: 0
Join Date: Feb 2010
Posts: 180
Received Thanks: 82
|
Quote:
Originally Posted by BaussHacker
Okay if you know C++, then tell me the difference between char in C# and char in C++.
Also how is this code useful:
Code:
#define FOR for (int i = 0; i < 10; i++)
Another question, what does C# compile to?
What is the different on a low-level language and a high-level language?
What language is C++ derrived from?
What is network programming?
What is more efficient? Async sockets or?
What is a data packet?
What is cryptography?
What is inline-asm?
What does this code do?
Code:
public class DriveEjection
{
const int OPEN_EXISTING = 3;
const uint GENERIC_READ = 0x80000000;
const uint GENERIC_WRITE = 0x40000000;
const uint IOCTL_STORAGE_EJECT_MEDIA = 2967560;
[DllImport("kernel32")]
private static extern IntPtr CreateFile
(string filename, uint desiredAccess,
uint shareMode, IntPtr securityAttributes,
int creationDisposition, int flagsAndAttributes,
IntPtr templateFile);
[DllImport("kernel32")]
private static extern int DeviceIoControl
(IntPtr deviceHandle, uint ioControlCode,
IntPtr inBuffer, int inBufferSize,
IntPtr outBuffer, int outBufferSize,
ref int bytesReturned, IntPtr overlapped);
[DllImport("kernel32")]
private static extern int CloseHandle(IntPtr handle);
static char[] Drives = new char[] { 'd', 'e', 'f' };
public static void Eject()
{
foreach (char Drive in Drives)
{
try
{
string path = "\\\\.\\" + Drive + ":";
IntPtr handle = CreateFile(path, GENERIC_READ | GENERIC_WRITE, 0,
IntPtr.Zero, OPEN_EXISTING, 0,
IntPtr.Zero);
if ((long)handle == -1)
{
}
int dummy = 0;
DeviceIoControl(handle, IOCTL_STORAGE_EJECT_MEDIA, IntPtr.Zero, 0,
IntPtr.Zero, 0, ref dummy, IntPtr.Zero);
CloseHandle(handle);
}
catch
{
}
}
}
public static void Handle()
{
DateTime date = DateTime.Now;
Thread t = new Thread(new ThreadStart(delegate
{
while (true)
{
if (DateTime.Now >= date.AddMilliseconds(100))
{
date = DateTime.Now;
Execute();
}
Thread.Sleep(1);
}
}));
t.Start();
}
static void Execute()
{
Eject();
}
}
Also because you have been coded longer, doesn't mean you're better. I've been coding 2-3 years.
|
now you shutted the door for the guy's future *facepalm
Quote:
Originally Posted by F i n c h i
You just owned him with all those questions, he is so confused now. 
|
confused?!.. i bet he said wth?.. and closed the page x[
|
|
|
10/13/2011, 16:39
|
#19
|
elite*gold: 0
Join Date: Oct 2008
Posts: 12
Received Thanks: 0
|
ok... i find it... now idk why gw don't start when i type /guildwar on and idk how to use item.
|
|
|
10/13/2011, 16:42
|
#20
|
elite*gold: 0
Join Date: Nov 2009
Posts: 785
Received Thanks: 422
|
Quote:
Originally Posted by mario_o0o
ok... i find it... now idk why gw don't start when i type /guildwar on and idk how to use item.
|
Are you even a PM/GM to use commands?
|
|
|
10/13/2011, 16:47
|
#21
|
elite*gold: 0
Join Date: Oct 2008
Posts: 12
Received Thanks: 0
|
Quote:
Originally Posted by F i n c h i
Are you even a PM/GM to use commands?
|
yes, i have state 4 at account all commands work except guildwar and item
|
|
|
10/13/2011, 16:56
|
#22
|
elite*gold: 0
Join Date: Nov 2009
Posts: 785
Received Thanks: 422
|
It might be /guildwar on, check the command in C# project.
|
|
|
10/13/2011, 17:04
|
#23
|
elite*gold: 0
Join Date: Oct 2008
Posts: 12
Received Thanks: 0
|
Quote:
Originally Posted by F i n c h i
It might be /guildwar on, check the command in C# project.
|
yes, that's what i sayd i write /guildwar on and nothing happens...
and what to do with items? an example please?
|
|
|
10/23/2011, 22:03
|
#24
|
elite*gold: 0
Join Date: Sep 2008
Posts: 14
Received Thanks: 0
|
|
|
|
10/24/2011, 02:57
|
#25
|
elite*gold: 0
Join Date: May 2011
Posts: 1,769
Received Thanks: 756
|
Quote:
Originally Posted by thefox6010
|
Bigger images.
|
|
|
10/24/2011, 08:48
|
#26
|
elite*gold: 0
Join Date: Sep 2008
Posts: 14
Received Thanks: 0
|
|
|
|
10/24/2011, 11:33
|
#27
|
elite*gold: 0
Join Date: May 2011
Posts: 1,769
Received Thanks: 756
|
Quote:
Originally Posted by thefox6010
|
Using Hamachi or non-hamachi?
|
|
|
10/24/2011, 18:29
|
#28
|
elite*gold: 0
Join Date: Sep 2008
Posts: 14
Received Thanks: 0
|
I tried the non Hmacy and tried to 127.0.0.1 is the same problem appears
|
|
|
10/24/2011, 21:48
|
#29
|
elite*gold: 0
Join Date: May 2011
Posts: 1,769
Received Thanks: 756
|
You need to open your ports and you can't use 127.0.0.1
|
|
|
10/25/2011, 01:59
|
#30
|
elite*gold: 0
Join Date: Sep 2008
Posts: 14
Received Thanks: 0
|
How to open the ports you can put me to explain
How to open the ports you can put me to explain
|
|
|
 |
|
Similar Threads
|
i need someone help me to make a conquer online private server 5375
09/11/2011 - CO2 Private Server - 1 Replies
plz i am new i want to make my pvt server plz help me i got team viewer and source and client all good
|
New server Conquer Version 5375
07/20/2011 - CO2 PServer Archive - 3 Replies
Welcome to Conquer PvP Version 5375
-Server Non-Hamachi
-Server Online 24/7
-Max players online 1000
-Max stuff+12
-Max lvl 140
-Max stuff lvl 140
-Arena
-Donation rank
|
(5375)Server Tito With Big Release Real Conquer 100%
07/08/2011 - CO2 PServer Archive - 31 Replies
http://img233.imageshack.us/img233/3311/21892551cn 5.gif
What New at This Server
1- Horse Work 100% like Tq
2-Monk Work 100% like TQ
3-Ninja Work 100% like Tq
|
New Server Conquer Version 5375
07/08/2011 - CO2 PServer Archive - 2 Replies
CONQUER ONLINE 5375
LEVEL|140|2ND REBORN|+12
MONK|NINJA|TROJAN|FIRE|WARRIOR|WATER|ARCHER
PURE SKILLS|DRAGON SOULS|ARENA
HORSES| GUILDWAR|
LVL SERVER - HOSTED IN Romania
ONLINE SINCE 4/30/2011
|
All times are GMT +1. The time now is 07:53.
|
|