mirror of
https://github.com/shavitush/bhoptimer.git
synced 2025-12-16 17:47:18 +00:00
shavit-core.sp - syntax
This commit is contained in:
parent
c93ce9f0d2
commit
6ca602df73
@ -2193,8 +2193,8 @@ public int SemiNative_PrintToChat(int client, int formatParam)
|
|||||||
{
|
{
|
||||||
//code to split string, need to find first space before message limit
|
//code to split string, need to find first space before message limit
|
||||||
//TODO: handle if there is a color code applied at iCut that != sText and apply it to the start of sBuffer2
|
//TODO: handle if there is a color code applied at iCut that != sText and apply it to the start of sBuffer2
|
||||||
char sBuffer1 = new char[maxLen+1];
|
char[] sBuffer1 = new char[maxLen+1];
|
||||||
char sBuffer2 = new char[maxLen+1];
|
char[] sBuffer2 = new char[maxLen+1];
|
||||||
strcopy(sBuffer1, sizeof(sBuffer1), sBuffer);
|
strcopy(sBuffer1, sizeof(sBuffer1), sBuffer);
|
||||||
|
|
||||||
int iCut = FindCharInString(sBuffer1, " ", true);
|
int iCut = FindCharInString(sBuffer1, " ", true);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user