I need Help Again :::: sorry for spamming

Started by ahmedzead, Jan 15, 2018, 02:34 PM

Previous topic - Next topic

ahmedzead

Can any one give me the function of GETTOK plz ???

Mohamed Boubekri

@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();
}
| What now ? | Not yet ! |
Morrocan:- [ 🇲🇦 ].

ahmedzead


ahmedzead

mohamed from where you can find all functions?
and i need IncCash function

Mohamed Boubekri

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#msg9324But Thi its Work Only For Account System Fuzzie,
But if you have Account System Save Bank & Cash For DataBase
Then That Will Work.
| What now ? | Not yet ! |
Morrocan:- [ 🇲🇦 ].