Vice City: Multiplayer

Server Development => Scripting and Server Management => Topic started by: ahmedzead on Jan 15, 2018, 02:34 PM

Title: I need Help Again :::: sorry for spamming
Post by: ahmedzead on Jan 15, 2018, 02:34 PM
Can any one give me the function of GETTOK plz ???
Title: Re: I need Help Again :::: sorry for spamming
Post by: Mohamed Boubekri on Jan 15, 2018, 02:44 PM
@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();
}
Title: Re: I need Help Again :::: sorry for spamming
Post by: ahmedzead on Jan 15, 2018, 02:46 PM
Yes im Forest and thank thx very much :) :) :) :)
Title: Re: I need Help Again :::: sorry for spamming
Post by: ahmedzead on Jan 15, 2018, 02:56 PM
mohamed from where you can find all functions?
and i need IncCash function
Title: Re: I need Help Again :::: sorry for spamming
Post by: Mohamed Boubekri on Jan 15, 2018, 03:01 PM
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.