|
You last visited: Today at 18:05
Advertisement
Need some Help Overe Here plz guys !!!
Discussion on Need some Help Overe Here plz guys !!! within the CO2 Private Server forum part of the Conquer Online 2 category.
01/03/2014, 10:45
|
#1
|
elite*gold: 0
Join Date: Jun 2013
Posts: 32
Received Thanks: 0
|
Need some Help Overe Here plz guys !!!
how to change the server name upside over there at the up-left corner and how to change the Words 'Welcome Alexander to' at the bottom in that loading bar !!
I have edited server name in both of them Config and rates in SQL and I have edited also the server name in config.ini in bin what should I do more ?!
|
|
|
01/03/2014, 10:50
|
#2
|
elite*gold: 0
Join Date: Mar 2007
Posts: 155
Received Thanks: 31
|
The Server name is in your Server.Dat (i actually don't know if its a good idea to change) but you could give it a try, make a backup of your existing server.dat, and decrypt it using this: 
after changing encrypt it again, with the file i posted above.
The Loading bar thing is in your source, try opening your source(in the code editor) and ctrl+f; Welcome, and find something like:
Quote:
|
"Welcome Server Alexander To"
|
Good luck
|
|
|
01/03/2014, 13:03
|
#3
|
elite*gold: 0
Join Date: Jul 2008
Posts: 874
Received Thanks: 238
|
Quote:
Originally Posted by bashondegek
The Server name is in your Server.Dat (i actually don't know if its a good idea to change) but you could give it a try, make a backup of your existing server.dat, and decrypt it using this: 
after changing encrypt it again, with the file i posted above.
The Loading bar thing is in your source, try opening your source(in the code editor) and ctrl+f; Welcome, and find something like:
Good luck
|
he can't cuz it has different key unknow for most
1. could achieved if u change it with writing in its memory address
2. search for "Welcome Server Alexander To" and change it.
|
|
|
01/03/2014, 15:40
|
#4
|
elite*gold: 0
Join Date: Jun 2013
Posts: 32
Received Thanks: 0
|
I didn't achieve anything till now
|
|
|
01/03/2014, 20:19
|
#5
|
elite*gold: 12
Join Date: Jul 2011
Posts: 8,282
Received Thanks: 4,191
|
The server configuration file in the client is protected by another encryption method. We know the decryption, just not the encryption. It sounds odd, but that's the nature of the cipher they used. The keys are too long to bruteforce effectively. For the welcome message, that's probably hard coded into the source. All you have to do is open your source in Visual Studio, search for and change the text, and rebuild the project.
|
|
|
01/04/2014, 11:16
|
#6
|
elite*gold: 0
Join Date: Jul 2008
Posts: 874
Received Thanks: 238
|
Quote:
Originally Posted by Spirited Fang
The server configuration file in the client is protected by another encryption method. We know the decryption, just not the encryption. It sounds odd, but that's the nature of the cipher they used. The keys are too long to bruteforce effectively. For the welcome message, that's probably hard coded into the source. All you have to do is open your source in Visual Studio, search for and change the text, and rebuild the project.
|
some achived it by doing some hex changes or writing at specific memory address every time u log in
|
|
|
01/04/2014, 17:16
|
#7
|
elite*gold: 0
Join Date: Jun 2013
Posts: 32
Received Thanks: 0
|
didn't achieve anything !!
|
|
|
01/05/2014, 10:54
|
#8
|
elite*gold: 0
Join Date: Jul 2008
Posts: 874
Received Thanks: 238
|
try this
Server Name changer
PHP Code:
//Conquer.exe+5FE0E8
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Runtime.InteropServices; using System.Diagnostics;
namespace ConsoleApplication1 { class Program { // 0x009FE0E8 const int PROCESS_VM_WRITE = 0x0020; const int PROCESS_VM_OPERATION = 0x0008; const int PROCESS_WM_READ = 0x0010;
[DllImport("kernel32.dll")] public static extern IntPtr OpenProcess(int dwDesiredAccess, bool bInheritHandle, int dwProcessId);
[DllImport("kernel32.dll", SetLastError = true)] static extern bool WriteProcessMemory(int hProcess, int lpBaseAddress, byte[] lpBuffer, int dwSize, ref int lpNumberOfBytesWritten); [DllImport("kernel32.dll")] public static extern bool ReadProcessMemory(int hProcess, int lpBaseAddress, byte[] lpBuffer, int dwSize, ref int lpNumberOfBytesRead);
public static void Main() { Process process = Process.GetProcessesByName("conquer")[0]; IntPtr processHandle = OpenProcess(PROCESS_WM_READ, false, process.Id);
int bytesRead = 0; byte[] buffer = new byte[10]; //'Hello World!' takes 12*2 bytes because of Unicode
// 0x0046A3B8 is the address where I found the string, replace it with what you found ReadProcessMemory((int)processHandle, 0x009FE0E8, buffer, buffer.Length, ref bytesRead);
Console.WriteLine(Encoding.Default.GetString(buffer) + " (" + bytesRead.ToString() + "bytes)"); string ServerName = Encoding.Default.GetString(buffer);
while (true) { if (!ServerName.Contains("MaTrix")) { process = Process.GetProcessesByName("conquer")[0]; processHandle = OpenProcess(0x1F0FFF, false, process.Id);
int bytesWritten = 0; buffer = Encoding.Default.GetBytes("MaTrix\0"); // '\0' marks the end of string
// replace 0x0046A3B8 with your address WriteProcessMemory((int)processHandle, 0x009FE0E8, buffer, buffer.Length, ref bytesWritten); Console.WriteLine("Done"); } } } } }
|
|
|
01/05/2014, 11:25
|
#9
|
elite*gold: 0
Join Date: Jun 2013
Posts: 32
Received Thanks: 0
|
how to change the name of the server at the top-left at the corner ?!!!
Quote:
Originally Posted by abdoumatrix
try this
Server Name changer
PHP Code:
//Conquer.exe+5FE0E8
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
using System.Diagnostics;
namespace ConsoleApplication1
{
class Program
{
// 0x009FE0E8
const int PROCESS_VM_WRITE = 0x0020;
const int PROCESS_VM_OPERATION = 0x0008;
const int PROCESS_WM_READ = 0x0010;
[DllImport("kernel32.dll")]
public static extern IntPtr OpenProcess(int dwDesiredAccess,
bool bInheritHandle, int dwProcessId);
[DllImport("kernel32.dll", SetLastError = true)]
static extern bool WriteProcessMemory(int hProcess, int lpBaseAddress,
byte[] lpBuffer, int dwSize, ref int lpNumberOfBytesWritten);
[DllImport("kernel32.dll")]
public static extern bool ReadProcessMemory(int hProcess,
int lpBaseAddress, byte[] lpBuffer, int dwSize, ref int lpNumberOfBytesRead);
public static void Main()
{
Process process = Process.GetProcessesByName("conquer")[0];
IntPtr processHandle = OpenProcess(PROCESS_WM_READ, false, process.Id);
int bytesRead = 0;
byte[] buffer = new byte[10]; //'Hello World!' takes 12*2 bytes because of Unicode
// 0x0046A3B8 is the address where I found the string, replace it with what you found
ReadProcessMemory((int)processHandle, 0x009FE0E8, buffer, buffer.Length, ref bytesRead);
Console.WriteLine(Encoding.Default.GetString(buffer) +
" (" + bytesRead.ToString() + "bytes)");
string ServerName = Encoding.Default.GetString(buffer);
while (true)
{
if (!ServerName.Contains("MaTrix"))
{
process = Process.GetProcessesByName("conquer")[0];
processHandle = OpenProcess(0x1F0FFF, false, process.Id);
int bytesWritten = 0;
buffer = Encoding.Default.GetBytes("MaTrix\0");
// '\0' marks the end of string
// replace 0x0046A3B8 with your address
WriteProcessMemory((int)processHandle, 0x009FE0E8, buffer, buffer.Length, ref bytesWritten);
Console.WriteLine("Done");
}
}
}
}
}
|
where to try it or search for it ?
how to change the name of the server at the top-left at the corner ?!!!
|
|
|
01/05/2014, 12:03
|
#10
|
elite*gold: 0
Join Date: Jul 2008
Posts: 874
Received Thanks: 238
|
Quote:
Originally Posted by louay1212
how to change the name of the server at the top-left at the corner ?!!!
where to try it or search for it ?
how to change the name of the server at the top-left at the corner ?!!!
|
make this codes a new project
and enter conquer
and run it and u will see
|
|
|
01/05/2014, 14:46
|
#11
|
elite*gold: 0
Join Date: Jun 2013
Posts: 32
Received Thanks: 0
|
plz explain well to me what to do exactly
I need more explanation + I got that when I open the game it says please update to the latest version !!
|
|
|
Similar Threads
|
Hey guys!
09/22/2012 - SRO Private Server - 11 Replies
Fuck PlaySRO and their DDoS attacks.
Epvp is a bunch of amateurs, didnt even ban him yet! Retards!
|
What Do you think Guys ?
09/18/2012 - Need for Speed World - 15 Replies
What do you think guys ?
Thank you For sharing your Comment :)
|
Need help guys !
09/14/2012 - Combat Arms - 14 Replies
I'm thinking to download combat arms but I don't know if it will work good for my location "Egypt" or no, So can anyone tell me if there are servers at combat arms work fine with egypt without lags :)
|
All times are GMT +1. The time now is 18:05.
|
|