• Welcome to Vice City Multiplayer.
 
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - kaje

#1
mIRC/pawn Scripting / Re: Extract Clan Tags from Nick-Name
September 17, 2009, 07:45:15 PM
Quote from: rulk on September 14, 2009, 09:03:13 PM
Hya Guys,


Here is an amended version, thanks for your comments so far.

kaje: Its a small snippet aimed at people that wish to obtain the clan tag from the players name for whatever purposes they desire.


; -----------USAGE----------
; //echo -a $FindClanTag([MK]rulk)
;
; Tags Covered: (Double Delimiter)
; [MK] (MK) =MK= ^MK^ <MK> -MK-
;
; Tags Covered: (Single Delimiter)
; ULK. ULK= L.Team*
;
; Note: Combinations of characters are also valid for
;       both double and single delimiter tags.
; --------------------------

alias FindClanTag {
  var %Double_Delim = $regex( D_DELIM, $1, /([[(=^<-]+\w+.[])=^>-]+)/ )
  var %Single_Delim = $regex( S_DELIM, $1,  (\w.+[.*=]+) )
  return $iif( %Double_Delim > 0, $regml(D_DELIM, 1), $regml(S_DELIM, 1) )
}


Dont forget, if there is any combination that you require me to add/remove dont hesitate to ask.

Kind Regards

Luke Rudge (rulk)
Thank you for explaining me.
#2
General Discussion / Re: VC:MP History
September 17, 2009, 07:34:59 PM
Quote from: [AoD]NC on September 09, 2009, 04:10:02 PM
Quote from: maxorator on September 08, 2009, 10:36:28 PM
Developing VC:MP is kind of complicated since we're all in a different timezone and practically can almost never chat in realtime.

Then maybe someone can say, why new SAMP and MTA versions are coming out regularly?

TBH, The SA:MP Team has like 5 Times more developers in the crew then VC:MP does.
Because, VC:MP isn't popular as it used to be. If you got my point. :-[
#3
UltraMegaServer / [Question] What happend to UMS?
September 13, 2009, 09:27:41 PM
Why this wonderful server stopped? :'(
#4
mIRC/pawn Scripting / Re: Extract Clan Tags from Nick-Name
September 13, 2009, 09:24:57 PM
Hey, rulk.
I've read the codes, But I still didn't understood why is this nessecary?