ARDA64
ARDA64
CC#
Created by RdZoid on 3/4/2025 in #help
Console.Writeline throwing error CS0234 in one class but the program.cs in the same project doesn't.
using system;
35 replies
CC#
Created by ARDA64 on 2/28/2025 in #help
mysql error
I couldn't find the mistake, where could it be?
5 replies
CC#
Created by ARDA64 on 2/28/2025 in #help
mysql error
5 replies
CC#
Created by ARDA64 on 2/28/2025 in #help
mysql error
code:
5 replies
CC#
Created by ARDA64 on 2/24/2025 in #help
Index and count must refer to a location within the buffer. How to solve (Parameter 'bytes') error
You are right, but this is an important moment
129 replies
CC#
Created by ARDA64 on 2/24/2025 in #help
Index and count must refer to a location within the buffer. How to solve (Parameter 'bytes') error
Ai coded
129 replies
CC#
Created by ARDA64 on 2/24/2025 in #help
Index and count must refer to a location within the buffer. How to solve (Parameter 'bytes') error
no
129 replies
CC#
Created by ARDA64 on 2/24/2025 in #help
Index and count must refer to a location within the buffer. How to solve (Parameter 'bytes') error
I can never do this alone ...
129 replies
CC#
Created by ARDA64 on 2/24/2025 in #help
Index and count must refer to a location within the buffer. How to solve (Parameter 'bytes') error
?
129 replies
CC#
Created by ARDA64 on 2/24/2025 in #help
Index and count must refer to a location within the buffer. How to solve (Parameter 'bytes') error
@Jimmacle For example, is this enough
129 replies
CC#
Created by ARDA64 on 2/24/2025 in #help
Index and count must refer to a location within the buffer. How to solve (Parameter 'bytes') error
error: DEBUG] Unexpected error from 64.202.184.249: System.ArgumentOutOfRangeException: Index and count must refer to a location within the buffer. (Parameter 'bytes') at System.Text.UTF8Encoding.GetString(Byte[] bytes, Int32 index, Int32 count) at Supercell.Laser.Titan.DataStream.ByteStream.ReadString(Int32 maxCapacity) in C:\Users\Administrator\Desktop\time brawl\src\Supercell.Laser.Titan\DataStream\ByteStream.cs:line 214 at normal code public string ReadString(int maxCapacity = 9000000) { int length = this.ReadBytesLength(); if (length <= -1) { return null; } else { if (length <= maxCapacity) { string value = Encoding.UTF8.GetString(this.Buffer, this.Offset, length); this.Offset += length; return value; } return null; } } fix: public string ReadString(int maxCapacity = 9000000) { int length = this.ReadBytesLength(); if (length <= 0 || length > maxCapacity) // Negatif veya çok büyük değerleri engelle { return null; } if (this.Offset + length > this.Buffer.Length) // Buffer sınırlarını kontrol et { Console.WriteLine("HATA: Geçersiz uzunluk veya buffer sınırı aşıldı!"); return null; } string value = Encoding.UTF8.GetString(this.Buffer, this.Offset, length); this.Offset += length; return value; }
129 replies
CC#
Created by ARDA64 on 2/24/2025 in #help
Index and count must refer to a location within the buffer. How to solve (Parameter 'bytes') error
If I throw you a mistake now, then I throw the code I made?
129 replies
CC#
Created by ARDA64 on 2/24/2025 in #help
Index and count must refer to a location within the buffer. How to solve (Parameter 'bytes') error
Can you help me?
129 replies
CC#
Created by ARDA64 on 2/24/2025 in #help
Index and count must refer to a location within the buffer. How to solve (Parameter 'bytes') error
@Angius
129 replies
CC#
Created by ARDA64 on 2/24/2025 in #help
Index and count must refer to a location within the buffer. How to solve (Parameter 'bytes') error
129 replies
CC#
Created by ARDA64 on 2/24/2025 in #help
Index and count must refer to a location within the buffer. How to solve (Parameter 'bytes') error
I got the outputs of the mistake
129 replies
CC#
Created by ARDA64 on 2/24/2025 in #help
Index and count must refer to a location within the buffer. How to solve (Parameter 'bytes') error
@Jimmacle
129 replies
CC#
Created by ARDA64 on 2/24/2025 in #help
Index and count must refer to a location within the buffer. How to solve (Parameter 'bytes') error
I don't need to remove the webhook system so?
129 replies
CC#
Created by ARDA64 on 2/24/2025 in #help
Index and count must refer to a location within the buffer. How to solve (Parameter 'bytes') error
So there is a mistake here
129 replies
CC#
Created by ARDA64 on 2/24/2025 in #help
Index and count must refer to a location within the buffer. How to solve (Parameter 'bytes') error
@Jimmacle Now there is a problem in Webhook or this code?
129 replies