Can any one give me the function of GETTOK plz ???
@ahmedzead, Are You Forest ?
Here is GEttok & Numtok Function:-
function GetTok(string, separator, n, ...)
{
local m = vargv.len() > 0 ? vargv[0] : n,
tokenized = split(string, separator),
text = "";
if (n > tokenized.len() || n < 1) return null;
for (; n <= m; n++)
{
text += text == "" ? tokenized[n-1] : separator + tokenized[n-1];
}
return text;
}
function NumTok(string, separator)
{
local tokenized = split(string, separator);
return tokenized.len();
}
Yes im Forest and thank thx very much :) :) :) :)
mohamed from where you can find all functions?
and i need IncCash function
Quote from: ahmedzead on Jan 15, 2018, 02:56 PMmohamed from where you can find all functions?
and i need IncCash function
Here You Go:-
http://forum.vc-mp.org/?topic=1374.msg9324#msg9324
But Thi its Work Only For Account System Fuzzie,
But if you have Account System Save Bank & Cash For DataBase
Then That Will Work.