#7

Put this into your codes!!

PHP код:
strtok(const string[], &index)
{
    new 
length strlen(string);
    while ((
index length) && (string[index] <= ' '))
    {
        
index++;
    }
 
    new 
offset index;
    new 
result[20];
    while ((
index length) && (string[index] > ' ') && ((index offset) < (sizeof(result) - 1)))
    {
        
result[index offset] = string[index];
        
index++;
    }
    
result[index offset] = EOS;
    return 
result;

for tmp read this! https://sampforum.blast.hk/showthread.php?tid=231496
Reply


Messages In This Thread
cmds - by Jaua10 - 11.07.2018, 17:35
Re: cmds - by ItsRobinson - 11.07.2018, 17:39
Re: cmds - by Jaua10 - 11.07.2018, 17:51
Re: cmds - by diego200052 - 11.07.2018, 18:30
Re: cmds - by Florin48 - 11.07.2018, 18:49
Re: cmds - by Jaua10 - 11.07.2018, 19:02
Re: cmds - by RedRex - 11.07.2018, 19:04
Re: cmds - by Sew_Sumi - 11.07.2018, 19:19
Re: cmds - by Jaua10 - 11.07.2018, 20:59
Re: cmds - by ItsRobinson - 11.07.2018, 21:04

Forum Jump:


Users browsing this thread: 3 Guest(s)