Thread: [Solved] No entries inside an array
View Single Post
Ghosted
Veteran Member
Join Date: Apr 2015
Location: Georgia
Old 09-13-2018 , 15:40   Re: No entries inside an array
Reply With Quote #24

Code:
stock remove_quotes_ex(Str[], Len)
{
new Temp = 0;

for (new Index=0; Index < Len; Index++)
{
if (Str[Index] != '"')
Str[Temp++] = Str[Index];
}

Str[min(Len - 1, Temp)] = 0;
}
Tested n works
__________________

[MOD] CS Weapon Mod V1.7.1
[MM] MetaMod-C V1.0
[MOD] CS NPC Mod (5%)


Probably Left AM

Last edited by Ghosted; 09-13-2018 at 15:43.
Ghosted is offline