قديم 2020-04-22, 09:57 PM
المشاركة #63  
AmrxCoding
تاريخ الإنضمام : Apr 2019
رقم العضوية : 33
المشاركات: 29
  • غير متواجد
افتراضي رد: اضافة البوكر
......................

قديم 2020-05-10, 02:38 PM
المشاركة #64  
mohamedabdo
تاريخ الإنضمام : May 2020
رقم العضوية : 3849
المشاركات: 196
  • غير متواجد
افتراضي رد: اضافة البوكر
تسلم ايدك

قديم 2020-05-12, 02:30 PM
المشاركة #65  
koko1
تاريخ الإنضمام : Apr 2020
رقم العضوية : 3723
المشاركات: 177
  • غير متواجد
افتراضي رد: اضافة البوكر
عاش

قديم 2020-05-16, 04:58 AM
المشاركة #66  
eslamnasser
تاريخ الإنضمام : Feb 2020
رقم العضوية : 3531
المشاركات: 89
  • غير متواجد
افتراضي رد: اضافة البوكر
عفواً لايمكن عرض الرابط إلا بعد الرد على الموضوع

السلام عليكم ورحمة الله وبركاته
اليوم اضافة ملفات البوكر كله
الموضوع نزل علي اخر ايام تيم اكسور والحمد لله لقيت الملفات بتاعتهم قبل ما يقفل
يلا نبداء
علشان منكبرش الموضوع انشرح بالصور
ده ملفات اتتحط في فلدر Game

والملفات دي هتتحط في المسار دا
Network\GamePackets

وأخيرآ تحميل الملفات
عفواً لايمكن عرض الرابط إلا بعد الرد على الموضوع
نكمل
في مسار bin\debug\database\gmlogs
ضيف الملفات ده
عفواً لايمكن عرض الرابط إلا بعد الرد على الموضوع
نيجي شوية للاكواد
كلاس Program.cs
ضيف دول

كود:
public static void AddpokerCps(string text
        { 
            try 
            { 
                
text "[" DateTime.Now.ToString("HH:mm:ss") + "]" text
                
string str DateTime.Now.Year "-" DateTime.Now.Month
                
string str2 = @"gmlogs\AddpokerCps"
                
string str3 Path.Combine(str2str); 
                if (!
File.Exists(str3 str)) 
                { 
                    
Directory.CreateDirectory(Path.Combine(str2str)); 
                } 
                if (!
File.Exists(string.Concat(new object[] { str3, @""DateTime.Now.Day".txt" }))) 
                { 
                    
using (FileStream stream File.Create(string.Concat(new object[] { str3, @""DateTime.Now.Day".txt" }))) 
                    { 
                        
stream.Close(); 
                    } 
                } 
                
using (StreamWriter writer = new StreamWriter(string.Concat(new object[] { str3, @""DateTime.Now.Day".txt" }), true)) 
                { 
                    
writer.WriteLine(text); 
                    
writer.Close(); 
                } 
            } 
            catch (
Exception exception
            { 
                
Phoenix_Project.Console.WriteLine(exceptionConsoleColor.DarkYellow); 
            } 
        }
public static 
void AddpokerAllinCps(string text
        { 
            try 
            { 
                
text "[" DateTime.Now.ToString("HH:mm:ss") + "]" text
                
string str DateTime.Now.Year "-" DateTime.Now.Month
                
string str2 = @"gmlogs\AddpokerAllinCps"
                
string str3 Path.Combine(str2str); 
                if (!
File.Exists(str3 str)) 
                { 
                    
Directory.CreateDirectory(Path.Combine(str2str)); 
                } 
                if (!
File.Exists(string.Concat(new object[] { str3, @""DateTime.Now.Day".txt" }))) 
                { 
                    
using (FileStream stream File.Create(string.Concat(new object[] { str3, @""DateTime.Now.Day".txt" }))) 
                    { 
                        
stream.Close(); 
                    } 
                } 
                
using (StreamWriter writer = new StreamWriter(string.Concat(new object[] { str3, @""DateTime.Now.Day".txt" }), true)) 
                { 
                    
writer.WriteLine(text); 
                    
writer.Close(); 
                } 
            } 
            catch (
Exception exception
            { 
                
Phoenix_Project.Console.WriteLine(exceptionConsoleColor.DarkYellow); 
            } 
        }
public static 
void AddCpsWin(string text
        { 
            try 
            { 
                
text "[" DateTime.Now.ToString("HH:mm:ss") + "]" text
                
string str DateTime.Now.Year "-" DateTime.Now.Month
                
string str2 = @"gmlogs\AddWinCps"
                
string str3 Path.Combine(str2str); 
                if (!
File.Exists(str3 str)) 
                { 
                    
Directory.CreateDirectory(Path.Combine(str2str)); 
                } 
                if (!
File.Exists(string.Concat(new object[] { str3, @""DateTime.Now.Day".txt" }))) 
                { 
                    
using (FileStream stream File.Create(string.Concat(new object[] { str3, @""DateTime.Now.Day".txt" }))) 
                    { 
                        
stream.Close(); 
                    } 
                } 
                
using (StreamWriter writer = new StreamWriter(string.Concat(new object[] { str3, @""DateTime.Now.Day".txt" }), true)) 
                { 
                    
writer.WriteLine(text); 
                    
writer.Close(); 
                } 
            } 
            catch (
Exception exception
            { 
                
ZenonProJect.Console.WriteLine(exceptionConsoleColor.DarkYellow); 
            } 
        } 

كلاس PacketBuilder.cs في Game

كود:
namespace Phoenix_Project.Game 

    
using System
    
using Phoenix_Project

    public class 
PacketBuilder 
    

        protected 
byte[] _buffer = new byte[0x400]; 
        protected 
int Len
        protected 
int Position
        protected 
byte[] TQ_SERVER Program.Encoding.GetBytes("TQServer"); 

        public 
PacketBuilder(int Tint L
        { 
            
this.Len L
            
this.Length(L); 
            
this.Type(T); 
        } 

        
internal void Fill(int End
        { 
            for (
int i this.PositionEndi++) 
            { 
                
this.Int(0); 
            } 
        } 

        public 
byte[] getFinal() 
        { 
            
this.Seal(); 
            return 
this._buffer
        } 

        public 
int GetPos() =>  
            
this.Position

        public 
void Int(int value
        { 
            
this._buffer[this.Position] = Convert.ToByte((int) (value 0xff)); 
            
this.Position++; 
        } 

        public 
void Int(uint value
        { 
            
this._buffer[this.Position] = Convert.ToByte((uint) (value 0xff)); 
            
this.Position++; 
        } 

        public 
void Int(int valueint Offset
        { 
            
this._buffer[Offset] = Convert.ToByte((int) (value 0xff)); 
            
Offset++; 
        } 

        public 
void Int(uint valueint Offset
        { 
            
this._buffer[Offset] = Convert.ToByte((uint) (value 0xff)); 
            
Offset++; 
        } 

        public 
void Length(int value
        { 
            
this._buffer[this.Position] = (byte) (value 0xff); 
            
this.Position++; 
            
this._buffer[this.Position] = (byte) ((value >>  & 0xff); 
            
this.Position++; 
        } 

        public 
void Length(int valueint Offset
        { 
            
this._buffer[Offset] = (byte) (value 0xff); 
            
Offset++; 
            
this._buffer[Offset] = (byte) ((value >>  & 0xff); 
        } 

        public 
void Long(int value
        { 
            
this._buffer[this.Position] = (byte) (value 0xff); 
            
this.Position++; 
            
this._buffer[this.Position] = (byte) ((value >>  & 0xff); 
            
this.Position++; 
            
this._buffer[this.Position] = (byte) ((value >> 0x10) & 0xff); 
            
this.Position++; 
            
this._buffer[this.Position] = (byte) ((value >> 0x18) & 0xff); 
            
this.Position++; 
        } 

        public 
void Long(uint value
        { 
            
this._buffer[this.Position] = (byte) (value 0xff); 
            
this.Position++; 
            
this._buffer[this.Position] = (byte) ((value >>  & 0xff); 
            
this.Position++; 
            
this._buffer[this.Position] = (byte) ((value >> 0x10) & 0xff); 
            
this.Position++; 
            
this._buffer[this.Position] = (byte) ((value >> 0x18) & 0xff); 
            
this.Position++; 
        } 

        public 
void Long(ulong value
        { 
            
this._buffer[this.Position] = (byte) (value & ((ulong0xffL)); 
            
this.Position++; 
            
this._buffer[this.Position] = (byte) ((value >>  & ((ulong0xffL)); 
            
this.Position++; 
            
this._buffer[this.Position] = (byte) ((value >> 0x10) & ((ulong0xffL)); 
            
this.Position++; 
            
this._buffer[this.Position] = (byte) ((value >> 0x18) & ((ulong0xffL)); 
            
this.Position++; 
        } 

        public 
void Long(int valueint Offset
        { 
            
this._buffer[Offset] = (byte) (value 0xff); 
            
Offset++; 
            
this._buffer[Offset] = (byte) ((value >>  & 0xff); 
            
Offset++; 
            
this._buffer[Offset] = (byte) ((value >> 0x10) & 0xff); 
            
Offset++; 
            
this._buffer[Offset] = (byte) ((value >> 0x18) & 0xff); 
        } 

        public 
void Long(uint valueint Offset
        { 
            
this._buffer[Offset] = (byte) (value 0xff); 
            
Offset++; 
            
this._buffer[Offset] = (byte) ((value >>  & 0xff); 
            
Offset++; 
            
this._buffer[Offset] = (byte) ((value >> 0x10) & 0xff); 
            
Offset++; 
            
this._buffer[Offset] = (byte) ((value >> 0x18) & 0xff); 
            
Offset++; 
        } 

        public 
void Long(ulong valueint Offset
        { 
            
this._buffer[Offset] = (byte) (value & ((ulong0xffL)); 
            
Offset++; 
            
this._buffer[Offset] = (byte) ((value >>  & ((ulong0xffL)); 
            
Offset++; 
            
this._buffer[Offset] = (byte) ((value >> 0x10) & ((ulong0xffL)); 
            
Offset++; 
            
this._buffer[Offset] = (byte) ((value >> 0x18) & ((ulong0xffL)); 
        } 

        public 
void Move(int value
        { 
            for (
int i 0valuei++) 
            { 
                
this._buffer[this.Position] = 0
                
this.Position++; 
            } 
        } 

        
internal void PrintThis() 
        { 
            
string line ""
            for (
int i 0this.Positioni++) 
            { 
                
line line this._buffer[i].ToString("X") + " "
            } 
            
Phoenix_Project.Console.WriteLine(lineConsoleColor.DarkYellow); 
        } 

        protected 
void Seal() 
        { 
            Array.
Copy(this.TQ_SERVER0this._bufferthis.Positionthis.TQ_SERVER.Length); 
            
this.Position += this.TQ_SERVER.Length 1
            
byte[] destinationArray = new byte[this.Position 1]; 
            Array.
Copy(this._bufferdestinationArray, (int) (this.Position 1)); 
            
this._buffer = new byte[destinationArray.Length]; 
            Array.
Copy(destinationArraythis._bufferdestinationArray.Length); 
            
destinationArray null
        } 

        public 
void SetPosition(int Pos
        { 
            
this.Position Pos
        } 

        public 
void Short(int value
        { 
            
this._buffer[this.Position] = (byte) (value 0xff); 
            
this.Position++; 
            
this._buffer[this.Position] = (byte) ((value >>  & 0xff); 
            
this.Position++; 
        } 

        public 
void Short(uint value
        { 
            
this._buffer[this.Position] = (byte) (value 0xff); 
            
this.Position++; 
            
this._buffer[this.Position] = (byte) ((value >>  & 0xff); 
            
this.Position++; 
        } 

        public 
void Short(int valueint Offset
        { 
            
this._buffer[Offset] = (byte) (value 0xff); 
            
this._buffer[Offset 1] = (byte) ((value >>  & 0xff); 
        } 

        public 
void Short(uint valueint Offset
        { 
            
this._buffer[Offset] = (byte) (value 0xff); 
            
Offset++; 
            
this._buffer[Offset] = (byte) ((value >>  & 0xff); 
        } 

        public 
void Text(string value
        { 
            
byte[] bytes Program.Encoding.GetBytes(value); 
            Array.
Copy(bytes0this._bufferthis.Positionbytes.Length); 
            
this.Position += bytes.Length
        } 

        public 
void Type(int value
        { 
            
this._buffer[this.Position] = (byte) (value 0xff); 
            
this.Position++; 
            
this._buffer[this.Position] = (byte) ((value >>  & 0xff); 
            
this.Position++; 
        } 

        public 
void Type(int valueint Offset
        { 
            
this._buffer[Offset] = (byte) (value 0xff); 
            
Offset++; 
            
this._buffer[Offset] = (byte) ((value >>  & 0xff); 
        } 

        public 
void ULong(ulong value
        { 
            
this._buffer[this.Position] = (bytevalue
            
this.Position++; 
            
this._buffer[this.Position] = (byte) (value >> 8); 
            
this.Position++; 
            
this._buffer[this.Position] = (byte) (value >> 0x10); 
            
this.Position++; 
            
this._buffer[this.Position] = (byte) (value >> 0x18); 
            
this.Position++; 
            
this._buffer[this.Position] = (byte) (value >> 0x20); 
            
this.Position++; 
            
this._buffer[this.Position] = (byte) (value >> 40); 
            
this.Position++; 
            
this._buffer[this.Position] = (byte) (value >> 0x30); 
            
this.Position++; 
            
this._buffer[this.Position] = (byte) (value >> 0x38); 
            
this.Position++; 
        } 

        public 
void ULong(ulong valueint Offset
        { 
            
this._buffer[Offset] = (bytevalue
            
Offset++; 
            
this._buffer[Offset] = (byte) (value >> 8); 
            
Offset++; 
            
this._buffer[Offset] = (byte) (value >> 0x10); 
            
Offset++; 
            
this._buffer[Offset] = (byte) (value >> 0x18); 
            
Offset++; 
            
this._buffer[Offset] = (byte) (value >> 0x20); 
            
Offset++; 
            
this._buffer[Offset] = (byte) (value >> 40); 
            
Offset++; 
            
this._buffer[Offset] = (byte) (value >> 0x30); 
            
Offset++; 
            
this._buffer[Offset] = (byte) (value >> 0x38); 
        } 
    } 


كده خلصنا وانشاء الله يظبط معاكم
عاش

قديم 2021-08-09, 02:26 PM
المشاركة #67  
blackconquer222
تاريخ الإنضمام : Jul 2021
رقم العضوية : 3989
المشاركات: 22
  • غير متواجد
افتراضي رد: اضافة البوكر
ععاش

قديم 2021-08-30, 06:46 PM
المشاركة #68  
egy-conquer
تاريخ الإنضمام : Jul 2021
رقم العضوية : 3978
المشاركات: 93
  • غير متواجد
افتراضي رد: اضافة البوكر
تسلم يكبير

قديم 2021-09-18, 08:12 PM
المشاركة #69  
apdoconquer1
تاريخ الإنضمام : Jul 2021
رقم العضوية : 3977
المشاركات: 19
  • غير متواجد
افتراضي رد: اضافة البوكر
عاااااااااااش

قديم 2021-11-25, 01:51 PM
المشاركة #70  
eyad
تاريخ الإنضمام : Nov 2021
رقم العضوية : 4242
المشاركات: 28
  • غير متواجد
افتراضي رد: اضافة البوكر
عفواً لايمكن عرض الرابط إلا بعد الرد على الموضوع

السلام عليكم ورحمة الله وبركاته
اليوم اضافة ملفات البوكر كله
الموضوع نزل علي اخر ايام تيم اكسور والحمد لله لقيت الملفات بتاعتهم قبل ما يقفل
يلا نبداء
علشان منكبرش الموضوع انشرح بالصور
ده ملفات اتتحط في فلدر Game

والملفات دي هتتحط في المسار دا
Network\GamePackets

وأخيرآ تحميل الملفات
عفواً لايمكن عرض الرابط إلا بعد الرد على الموضوع
نكمل
في مسار bin\debug\database\gmlogs
ضيف الملفات ده
عفواً لايمكن عرض الرابط إلا بعد الرد على الموضوع
نيجي شوية للاكواد
كلاس Program.cs
ضيف دول

كود:
public static void AddpokerCps(string text
        { 
            try 
            { 
                
text "[" DateTime.Now.ToString("HH:mm:ss") + "]" text
                
string str DateTime.Now.Year "-" DateTime.Now.Month
                
string str2 = @"gmlogs\AddpokerCps"
                
string str3 Path.Combine(str2str); 
                if (!
File.Exists(str3 str)) 
                { 
                    
Directory.CreateDirectory(Path.Combine(str2str)); 
                } 
                if (!
File.Exists(string.Concat(new object[] { str3, @""DateTime.Now.Day".txt" }))) 
                { 
                    
using (FileStream stream File.Create(string.Concat(new object[] { str3, @""DateTime.Now.Day".txt" }))) 
                    { 
                        
stream.Close(); 
                    } 
                } 
                
using (StreamWriter writer = new StreamWriter(string.Concat(new object[] { str3, @""DateTime.Now.Day".txt" }), true)) 
                { 
                    
writer.WriteLine(text); 
                    
writer.Close(); 
                } 
            } 
            catch (
Exception exception
            { 
                
Phoenix_Project.Console.WriteLine(exceptionConsoleColor.DarkYellow); 
            } 
        }
public static 
void AddpokerAllinCps(string text
        { 
            try 
            { 
                
text "[" DateTime.Now.ToString("HH:mm:ss") + "]" text
                
string str DateTime.Now.Year "-" DateTime.Now.Month
                
string str2 = @"gmlogs\AddpokerAllinCps"
                
string str3 Path.Combine(str2str); 
                if (!
File.Exists(str3 str)) 
                { 
                    
Directory.CreateDirectory(Path.Combine(str2str)); 
                } 
                if (!
File.Exists(string.Concat(new object[] { str3, @""DateTime.Now.Day".txt" }))) 
                { 
                    
using (FileStream stream File.Create(string.Concat(new object[] { str3, @""DateTime.Now.Day".txt" }))) 
                    { 
                        
stream.Close(); 
                    } 
                } 
                
using (StreamWriter writer = new StreamWriter(string.Concat(new object[] { str3, @""DateTime.Now.Day".txt" }), true)) 
                { 
                    
writer.WriteLine(text); 
                    
writer.Close(); 
                } 
            } 
            catch (
Exception exception
            { 
                
Phoenix_Project.Console.WriteLine(exceptionConsoleColor.DarkYellow); 
            } 
        }
public static 
void AddCpsWin(string text
        { 
            try 
            { 
                
text "[" DateTime.Now.ToString("HH:mm:ss") + "]" text
                
string str DateTime.Now.Year "-" DateTime.Now.Month
                
string str2 = @"gmlogs\AddWinCps"
                
string str3 Path.Combine(str2str); 
                if (!
File.Exists(str3 str)) 
                { 
                    
Directory.CreateDirectory(Path.Combine(str2str)); 
                } 
                if (!
File.Exists(string.Concat(new object[] { str3, @""DateTime.Now.Day".txt" }))) 
                { 
                    
using (FileStream stream File.Create(string.Concat(new object[] { str3, @""DateTime.Now.Day".txt" }))) 
                    { 
                        
stream.Close(); 
                    } 
                } 
                
using (StreamWriter writer = new StreamWriter(string.Concat(new object[] { str3, @""DateTime.Now.Day".txt" }), true)) 
                { 
                    
writer.WriteLine(text); 
                    
writer.Close(); 
                } 
            } 
            catch (
Exception exception
            { 
                
ZenonProJect.Console.WriteLine(exceptionConsoleColor.DarkYellow); 
            } 
        } 

كلاس PacketBuilder.cs في Game

كود:
namespace Phoenix_Project.Game 

    
using System
    
using Phoenix_Project

    public class 
PacketBuilder 
    

        protected 
byte[] _buffer = new byte[0x400]; 
        protected 
int Len
        protected 
int Position
        protected 
byte[] TQ_SERVER Program.Encoding.GetBytes("TQServer"); 

        public 
PacketBuilder(int Tint L
        { 
            
this.Len L
            
this.Length(L); 
            
this.Type(T); 
        } 

        
internal void Fill(int End
        { 
            for (
int i this.PositionEndi++) 
            { 
                
this.Int(0); 
            } 
        } 

        public 
byte[] getFinal() 
        { 
            
this.Seal(); 
            return 
this._buffer
        } 

        public 
int GetPos() =>  
            
this.Position

        public 
void Int(int value
        { 
            
this._buffer[this.Position] = Convert.ToByte((int) (value 0xff)); 
            
this.Position++; 
        } 

        public 
void Int(uint value
        { 
            
this._buffer[this.Position] = Convert.ToByte((uint) (value 0xff)); 
            
this.Position++; 
        } 

        public 
void Int(int valueint Offset
        { 
            
this._buffer[Offset] = Convert.ToByte((int) (value 0xff)); 
            
Offset++; 
        } 

        public 
void Int(uint valueint Offset
        { 
            
this._buffer[Offset] = Convert.ToByte((uint) (value 0xff)); 
            
Offset++; 
        } 

        public 
void Length(int value
        { 
            
this._buffer[this.Position] = (byte) (value 0xff); 
            
this.Position++; 
            
this._buffer[this.Position] = (byte) ((value >>  & 0xff); 
            
this.Position++; 
        } 

        public 
void Length(int valueint Offset
        { 
            
this._buffer[Offset] = (byte) (value 0xff); 
            
Offset++; 
            
this._buffer[Offset] = (byte) ((value >>  & 0xff); 
        } 

        public 
void Long(int value
        { 
            
this._buffer[this.Position] = (byte) (value 0xff); 
            
this.Position++; 
            
this._buffer[this.Position] = (byte) ((value >>  & 0xff); 
            
this.Position++; 
            
this._buffer[this.Position] = (byte) ((value >> 0x10) & 0xff); 
            
this.Position++; 
            
this._buffer[this.Position] = (byte) ((value >> 0x18) & 0xff); 
            
this.Position++; 
        } 

        public 
void Long(uint value
        { 
            
this._buffer[this.Position] = (byte) (value 0xff); 
            
this.Position++; 
            
this._buffer[this.Position] = (byte) ((value >>  & 0xff); 
            
this.Position++; 
            
this._buffer[this.Position] = (byte) ((value >> 0x10) & 0xff); 
            
this.Position++; 
            
this._buffer[this.Position] = (byte) ((value >> 0x18) & 0xff); 
            
this.Position++; 
        } 

        public 
void Long(ulong value
        { 
            
this._buffer[this.Position] = (byte) (value & ((ulong0xffL)); 
            
this.Position++; 
            
this._buffer[this.Position] = (byte) ((value >>  & ((ulong0xffL)); 
            
this.Position++; 
            
this._buffer[this.Position] = (byte) ((value >> 0x10) & ((ulong0xffL)); 
            
this.Position++; 
            
this._buffer[this.Position] = (byte) ((value >> 0x18) & ((ulong0xffL)); 
            
this.Position++; 
        } 

        public 
void Long(int valueint Offset
        { 
            
this._buffer[Offset] = (byte) (value 0xff); 
            
Offset++; 
            
this._buffer[Offset] = (byte) ((value >>  & 0xff); 
            
Offset++; 
            
this._buffer[Offset] = (byte) ((value >> 0x10) & 0xff); 
            
Offset++; 
            
this._buffer[Offset] = (byte) ((value >> 0x18) & 0xff); 
        } 

        public 
void Long(uint valueint Offset
        { 
            
this._buffer[Offset] = (byte) (value 0xff); 
            
Offset++; 
            
this._buffer[Offset] = (byte) ((value >>  & 0xff); 
            
Offset++; 
            
this._buffer[Offset] = (byte) ((value >> 0x10) & 0xff); 
            
Offset++; 
            
this._buffer[Offset] = (byte) ((value >> 0x18) & 0xff); 
            
Offset++; 
        } 

        public 
void Long(ulong valueint Offset
        { 
            
this._buffer[Offset] = (byte) (value & ((ulong0xffL)); 
            
Offset++; 
            
this._buffer[Offset] = (byte) ((value >>  & ((ulong0xffL)); 
            
Offset++; 
            
this._buffer[Offset] = (byte) ((value >> 0x10) & ((ulong0xffL)); 
            
Offset++; 
            
this._buffer[Offset] = (byte) ((value >> 0x18) & ((ulong0xffL)); 
        } 

        public 
void Move(int value
        { 
            for (
int i 0valuei++) 
            { 
                
this._buffer[this.Position] = 0
                
this.Position++; 
            } 
        } 

        
internal void PrintThis() 
        { 
            
string line ""
            for (
int i 0this.Positioni++) 
            { 
                
line line this._buffer[i].ToString("X") + " "
            } 
            
Phoenix_Project.Console.WriteLine(lineConsoleColor.DarkYellow); 
        } 

        protected 
void Seal() 
        { 
            Array.
Copy(this.TQ_SERVER0this._bufferthis.Positionthis.TQ_SERVER.Length); 
            
this.Position += this.TQ_SERVER.Length 1
            
byte[] destinationArray = new byte[this.Position 1]; 
            Array.
Copy(this._bufferdestinationArray, (int) (this.Position 1)); 
            
this._buffer = new byte[destinationArray.Length]; 
            Array.
Copy(destinationArraythis._bufferdestinationArray.Length); 
            
destinationArray null
        } 

        public 
void SetPosition(int Pos
        { 
            
this.Position Pos
        } 

        public 
void Short(int value
        { 
            
this._buffer[this.Position] = (byte) (value 0xff); 
            
this.Position++; 
            
this._buffer[this.Position] = (byte) ((value >>  & 0xff); 
            
this.Position++; 
        } 

        public 
void Short(uint value
        { 
            
this._buffer[this.Position] = (byte) (value 0xff); 
            
this.Position++; 
            
this._buffer[this.Position] = (byte) ((value >>  & 0xff); 
            
this.Position++; 
        } 

        public 
void Short(int valueint Offset
        { 
            
this._buffer[Offset] = (byte) (value 0xff); 
            
this._buffer[Offset 1] = (byte) ((value >>  & 0xff); 
        } 

        public 
void Short(uint valueint Offset
        { 
            
this._buffer[Offset] = (byte) (value 0xff); 
            
Offset++; 
            
this._buffer[Offset] = (byte) ((value >>  & 0xff); 
        } 

        public 
void Text(string value
        { 
            
byte[] bytes Program.Encoding.GetBytes(value); 
            Array.
Copy(bytes0this._bufferthis.Positionbytes.Length); 
            
this.Position += bytes.Length
        } 

        public 
void Type(int value
        { 
            
this._buffer[this.Position] = (byte) (value 0xff); 
            
this.Position++; 
            
this._buffer[this.Position] = (byte) ((value >>  & 0xff); 
            
this.Position++; 
        } 

        public 
void Type(int valueint Offset
        { 
            
this._buffer[Offset] = (byte) (value 0xff); 
            
Offset++; 
            
this._buffer[Offset] = (byte) ((value >>  & 0xff); 
        } 

        public 
void ULong(ulong value
        { 
            
this._buffer[this.Position] = (bytevalue
            
this.Position++; 
            
this._buffer[this.Position] = (byte) (value >> 8); 
            
this.Position++; 
            
this._buffer[this.Position] = (byte) (value >> 0x10); 
            
this.Position++; 
            
this._buffer[this.Position] = (byte) (value >> 0x18); 
            
this.Position++; 
            
this._buffer[this.Position] = (byte) (value >> 0x20); 
            
this.Position++; 
            
this._buffer[this.Position] = (byte) (value >> 40); 
            
this.Position++; 
            
this._buffer[this.Position] = (byte) (value >> 0x30); 
            
this.Position++; 
            
this._buffer[this.Position] = (byte) (value >> 0x38); 
            
this.Position++; 
        } 

        public 
void ULong(ulong valueint Offset
        { 
            
this._buffer[Offset] = (bytevalue
            
Offset++; 
            
this._buffer[Offset] = (byte) (value >> 8); 
            
Offset++; 
            
this._buffer[Offset] = (byte) (value >> 0x10); 
            
Offset++; 
            
this._buffer[Offset] = (byte) (value >> 0x18); 
            
Offset++; 
            
this._buffer[Offset] = (byte) (value >> 0x20); 
            
Offset++; 
            
this._buffer[Offset] = (byte) (value >> 40); 
            
Offset++; 
            
this._buffer[Offset] = (byte) (value >> 0x30); 
            
Offset++; 
            
this._buffer[Offset] = (byte) (value >> 0x38); 
        } 
    } 


كده خلصنا وانشاء الله يظبط معاكم
تحت التجربه


العلامات المرجعية



الذين يشاهدون محتوى الموضوع الآن : 1 ( الأعضاء 0 والزوار 1)
 


المواضيع المتشابهه للموضوع: اضافة البوكر
الموضوع كاتب الموضوع المنتدى مشاركات آخر مشاركة
ان بى سى يدخلك البوكر محمد ياسر تطوير سيرفرات كونكر 5 2026-04-08 07:00 PM
طلب اضافت البوكر لسورس عادي ElSaher مشكلات السيرفيرات كونكر الشخصيه 10 2020-05-06 05:12 AM
كيفيت اضافت طربيزت البوكر في اي مابة ElSaher تطوير سيرفرات كونكر 0 2020-04-04 06:03 PM
محتاج البوكر osama مشكلات السيرفيرات كونكر الشخصيه 1 2019-07-28 04:06 PM
طريقة اضافة البوكر salahsayed مشكلات السيرفيرات كونكر الشخصيه 4 2019-05-11 01:58 PM


الساعة الآن 01:45 AM

Powered by vBulletin® Copyright ©2000 - 2019, Jelsoft Enterprises Ltd.