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 ... 14
16
Support / Re: Hi guys ...
« on: April 12, 2014, 04:30:07 am »
Hi guys i am new here ...
i want some help ...
i have server can some one tell me how can i make it 24/24hrs? you need a vps
and how can i add /c spawn "to spawn cars" downloads the GUPS
and /c warn "to warn players" downloads the GUPS
i am waiting ::)
and what the name of the file of the irc cmds???  Use Squirrel
and i have if someone fail in login or  register get kicked .Use GUPS
but i want  the player if fail in login or register i want him be freeze .

17
Videos and Screenshots / Re: PiX
« on: April 11, 2014, 09:27:18 pm »

18
Servers / Re: [R2x] Dhoom 3 [ Server Now Up ]
« on: April 11, 2014, 09:26:37 pm »
Quote

REGARDING : JIMX
CREATOR : JIMX[Me]

LOL

Good Luck

19
General Discussion / Re: A $100 question
« on: April 10, 2014, 04:46:18 pm »
No, I would create one for me  ::)

20
mIRC/pawn Scripting / Re: Need /c slap command
« on: April 08, 2014, 04:52:17 pm »
Code: [Select]
else if ( strcmp( cmd, "slap", true ) == 0 )
{
tmp = strtok( cmdtext, idx ); new plr = FindPlayerIDFromString( tmp );
if ( !strlen( tmp ) ) SendClientMessage( playerid, -1, "Use: /c Slap [Nick/ID]" );
else if ( plr == INACTIVE_PLAYER_ID ) SendClientMessage( playerid, -1, "[Error]: Invalid Player" );
else
{
new Float:x, Float:y, Float:z;
GetPlayerPos( plr, x, y, z );
SetPlayerPos( plr, x, y + 10.0, z, 0, 0 );
}
return 1;
}

Test  ;)

21
mIRC/pawn Scripting / Re: Fix server
« on: April 05, 2014, 05:26:30 pm »
checks if the file names in the gamemodes folder is test.amx and test.pwn unlike you must rename  ;)

22
Excuse the question, what you gain by copying others?  ???

24
mIRC/pawn Scripting / Re: Help!
« on: April 02, 2014, 11:24:57 pm »
Code: [Select]
public OnGameModeInit()
{
 SetWeaponDamage(33,0);
 return 1;
}

25
0.4 Public Beta #2 / Re: Launch Erro?
« on: April 01, 2014, 10:39:22 pm »
Okay Locked  8)

26
0.4 Public Beta #2 / Launch Erro?
« on: March 31, 2014, 06:33:23 pm »


Game: GTA3  ???

27
Snippet Showroom / Re: Vehicle fix system with timer TESTED
« on: March 31, 2014, 04:30:42 am »
the loop for this, or am I wrong?  ???

28
Snippet Showroom / Re: Language SYstem [ v2 ] [ By me ]
« on: March 30, 2014, 01:40:32 am »
what's different than mine?  ???

mine is easier to use  :-[

is because v2?

29
Snippet Showroom / Re: [Include] Language
« on: March 29, 2014, 06:57:13 pm »
I though you posted a built-in translator

maybe in the future  ;D

30
Snippet Showroom / [Include] Language
« on: March 29, 2014, 04:17:19 am »
Hello, here I am sharing my scripts
My first include

download the here include
Clicky

Functions

GetPlayerLanguage(playerid);
SetPlayerLanguage(playerid,language);
SendLanguageMessage(playerid,color,english[],portuguese[]);
SendLanguageMessageToAll(color,english[],portuguese[]);

Examples

Code: [Select]
public OnPlayerCommandText( playerid, cmdtext[] )
{
if ( strcmp( cmd, "pt", true ) == 0 )
{
SendClientMessage(playerid, -1, "His language was changed to Portuguese");
SetPlayerLanguage(playerid,Portuguese);
return 1;
}
else if ( strcmp( cmd, "en", true ) == 0 )
{
SendClientMessage(playerid, -1, "His language was changed to English");
SetPlayerLanguage(playerid,English);
return 1;
}
else if ( strcmp( cmd, "language", true ) == 0 )
{
SendLanguageMessage(playerid,-1,"His language is English","Sua linguagem e Portuguese");
return 1;
}
else if ( strcmp( cmd, "languageall", true ) == 0 )
{
SendLanguageMessageToAll(-1,"Welcome","Bem Vindos");
return 1;
}
    return 0;
}

Credits: Me

Any error or doubt post here

Sorry for my english

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