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.


Messages - MatheuS

Pages: 1 2 [3] 4 5 ... 14
31
l o l

32
VC:MP Clans / Re: LBR | Legion Brazillian
« on: March 23, 2014, 03:23:55 am »
Victor Ferreira left. 22-3-2014

33
VC:MP Clans / LBR | Legion Brazillian
« on: March 21, 2014, 01:00:27 am »


History & Information
Legion Brazilian clan originally created only for the brazilians and with the time is now a international clan. LBR it's a old clan known on VC:MP, founded the 14th July of 2009 by George. We had our ups and downs to through of the years but today, we have loyal members, friendly with a good experience in this game. Everybody are invited to join on LBR, following all steps for be a member. Click here for apply!
 
We are under the administration of George, Junior and Marcos. Our Division: [ LBR / LBR_R / LBR_T ]


Website & IRC
If you want know more about us simply register and join with us in our website. Click here!
If you want talk with us, join to our irc channel #lbr on Lunet (irc.liberty-unleashed.co.uk)


Scripting
We have members experimented with the scripting. This are the servers in where participated our clan:
 
[Xe] European Server: (LBR)George [Developer] - IP: 94.23.157.172:5190
[Xs] Evolution: (LBR)George & (LBR)Junior [Developers] - IP: 108.61.49.237:5192
BRASIL | Evolution DMS: (LBR)Lucas [Developer] - IP: 108.61.49.237:5184


Clan Members
Admins
George
Junior
Marcos

 
Members
Anta171
Replicante
Diogo
UisterX
Lance
Lucas
Matheus

Sami
Robson_BR
Andre_Fernandes

HeadsMan
Diego_Br
LordBlack

 
Total members: 16 Members.


Last News:
 
LordBlack accepted as trainee. 25-04-2014
Robson_Br promoted to Rockie. 10-4-2014
Andre_Fernandes promoted to Rockie. 10-4-2014
Matheus promoted to full. 30-1-2014
Lucas promoted to full. 30-1-2014
Franklin left. 21-2-2014
Victor Ferreira accepted as trainee. 22-2-2014
Diego Savio accepted as trainee. 22-2-2014
Heverton left. 27-2-2014

34
VC:MP Clans / Re: White Shadows | Diverse Multigaming Clan | Est. 2007
« on: March 20, 2014, 11:40:10 pm »
Nice work!  ;)

35
Support / Re: help needed!!!
« on: March 20, 2014, 11:36:53 pm »
I think this type of server is no more

36
Snippet Showroom / Re: [FUNCTION] ProxDetectorS
« on: March 19, 2014, 05:41:38 pm »
What do you want it to do, Matt? Could you please describe your code?

him and good for roleplay servers, eg set the distance between the thief and the policeman, depends on who will use, and how  ;)

37
General Discussion / Re: What the fuck?
« on: March 19, 2014, 12:14:43 am »
Use this browser will work correctly  ::)

Click me

38
Support / Re: bbbb
« on: March 19, 2014, 12:13:16 am »
Use this browser will work correctly

Click me

39
Snippet Showroom / Re: My XP system
« on: March 18, 2014, 07:55:57 pm »
Is It Usefull? Or How Is This Usefull?

it serves to distract the players, the more time online, more xp, you can put money every level to rise

40
VC:MP Clans / Re: Neutral Mega Killers clan
« on: March 18, 2014, 07:32:17 pm »
Think I've seen the [NK] tag

Other than that, good luck

41
Snippet Showroom / My XP system
« on: March 18, 2014, 07:30:37 pm »
Variable
Code: [Select]
new pExp[MAX_PLAYERS]; // this variable is to Experience
new pTimeUP[MAX_PLAYERS]; // this variable is the time to get XP

Function's

Code: [Select]
public OnPlayerConnect(playerid)
{
    pExp[playerid] = GetPlayerExp(playerid);// takes the value of the line "Experience" in the player file
    pTimeUP[playerid] = SetTimer("UpXP",60*60000,true);
    }
    return 1;
}

Code: [Select]
public OnPlayerDisconnect(playerid, reason)
{
   SetPlayerExp(playerid,pExp[playerid]);
}
return 1;
}

Code: [Select]
stock UpXP(playerid)
{
   
    pExp[playerid] ++;
    new string[50];
    format(string,sizeof(string),"[XP] Congratulations you just won XP on our server",pExp[playerid]);
    SendClientMessage(playerid,-1,string);
        return 1;

}

Code: [Select]
public SetPlayerExp(playerid,Exp)
{
    format(INFO,256, REGISTERS, gPlayers[playerid]); //I created this in the WarChiefs, if you use another script just change
dini_IntSet(INFO,"EXP",Exp);
}
public GetPlayerExp(playerid)
{
    format(INFO,256, REGISTERS, gPlayers[playerid]);
new exp; exp = dini_Int(INFO,"EXP");
return exp;
}

See an Error? post here

Thanks, I have helped  :o

42
Snippet Showroom / [FUNCTION] ProxDetectorS
« on: March 18, 2014, 07:18:44 pm »
Code: [Select]
forward ProxDetectorS(Float:radi, playerid, targetid);
public ProxDetectorS(Float:radi, playerid, targetid)
{
    if(IsPlayerConnected(playerid)&&IsPlayerConnected(targetid))
{
new Float:posx, Float:posy, Float:posz;
new Float:oldposx, Float:oldposy, Float:oldposz;
new Float:tempposx, Float:tempposy, Float:tempposz;
GetPlayerPos(playerid, oldposx, oldposy, oldposz);
//radi = 2.0; //Trigger Radius
GetPlayerPos(targetid, posx, posy, posz);
tempposx = (oldposx -posx);
tempposy = (oldposy -posy);
tempposz = (oldposz -posz);
//printf("DEBUG: X:%f Y:%f Z:%f",posx,posy,posz);
if (((tempposx < radi) && (tempposx > -radi)) && ((tempposy < radi) && (tempposy > -radi)) && ((tempposz < radi) && (tempposz > -radi)))
{
return true;
}
}
return 0;
}

Eg.:

Using a command or a function

Code: [Select]
                        if (ProxDetectorS(8.0, playerid, plr))
       {
                            SendClientMessage(playerid, -1, "The player is near you!");
                       }
else
{
SendClientMessage(playerid, -1, "  The character is far from You!");
return true;
                }

That and an example, will not try to put it this way to be, and this is an example!

Any bug, post it here

Thank's

43
F ired
A lone
I nternationally
L ost
FAIL!!!!

What The FUck Noob~
iTs WOrking And Also Tested In All Scripts! Noob Kind Of Dickhead!

Keep Calm  :o

44
why do not you put the timers together in a function?  ???

eg.: Click Here

if It Is Neccessary? Edited

yes? ._.

45
why do not you put the timers together in a function?  ???

eg.: Click Here

Pages: 1 2 [3] 4 5 ... 14