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 - JaVeD

Pages: 1 [2] 3 4
16
ShowRoom (pawn) / Re: [BROKEN] Easy Clan War System by XD [ME]
« on: June 16, 2013, 04:23:46 pm »
Any time the script by mrox worked ? so how this work :P

17
mIRC/pawn Scripting / Re: Show Your Skills Here!!! (HELP)
« on: March 10, 2013, 02:05:07 pm »
what window xp ? when i run in window it get attack and off and in linux too what i need to do to protect it ??? if u know then post don't make spam like ur post i want to say...window xp shitter man

18
mIRC/pawn Scripting / Show Your Skills Here!!! (HELP)
« on: March 10, 2013, 10:51:22 am »
HY Guys,..
                     I Want Help if you guys can Help please help me see the image the consola is running but server off 1st consola was running and players was playing in server someone crash the server with a program i don't want to post about program because then all use to crash each other servers so see consola is running and server got offline



how to setup that server not get crash pleeeease help me only pawn server crash if server is sq+linux host then it don't crash i host pawn server with linux it get crash please tell me how to protect the pawn server

19
Snippet Showroom / Re: The real Vip System
« on: March 05, 2013, 08:56:58 am »
GOOD COMMANDS + NO BUGS GREAT

20
Servers / (PRO) CLAN || A/D War Zone
« on: March 04, 2013, 12:39:28 pm »
HostName: (PRO) CLAN || A/D War Zone
Address:  72.71.153.27:5195
Players:  0 / 28
Ping:     337
Mode:    PRO A/D zone (SQ)
Map:      Vice-City

21
VC:MP Clans / Re: PRO-Clan
« on: March 04, 2013, 12:38:31 pm »
HostName: (PRO) CLAN || A/D War Zone
Address:  72.71.153.27:5195
Players:  0 / 28
Ping:     337
Mode:    PRO A/D zone (SQ)
Map:      Vice-City

Hosted in VPS !!!!!!!

22
Snippet Showroom / Re: [Snippet] VIP system
« on: March 03, 2013, 07:25:57 pm »
yes he copied the TDM vip system and this not work in other scripts aledark is right make your own script then post here if you copy someone script and post here then u can post up then 1000 scripts so don't copy :d and stop insulting bigger rank member!

23
mIRC/pawn Scripting / Re: Help me!Come in !
« on: March 02, 2013, 03:56:22 pm »
lol then i thing he is using sql and putting pawn command haha kylinzhang what server u r using ? i thing he have mistake in color code add this in color COLOR_GREEN

24
Servers / Re: [R2x]Zombies City Server
« on: March 02, 2013, 02:28:22 pm »
LOLZZ MY VPS ADRESS ? BUT I DID NOT HOSTED THIS SERVER

25
Servers / Re: <><>|||> United Island Freedom <|||<><>
« on: March 01, 2013, 08:20:10 pm »
aledark server is hosted in vps for 24/7 ip : 94:249.249.106:5193

26
Snippet Showroom / Re: Change ban system of yours gups!working 100 %
« on: February 12, 2013, 05:37:31 am »
Not Working For me i need to delete 1st ban system for this ? all old public ban functions ?

Code: [Select]
[code]C:\DOCUME~1\JAVEDA~1\Desktop\JAVED'~2\GAMEMO~1\UIF.pwn(5306) : error 021: symbol already defined: "InfoBanned"
C:\DOCUME~1\JAVEDA~1\Desktop\JAVED'~2\GAMEMO~1\UIF.pwn(5341) : error 027: invalid character constant
C:\DOCUME~1\JAVEDA~1\Desktop\JAVED'~2\GAMEMO~1\UIF.pwn(5341) : warning 215: expression has no effect
C:\DOCUME~1\JAVEDA~1\Desktop\JAVED'~2\GAMEMO~1\UIF.pwn(5341) : error 001: expected token: ";", but found ")"
C:\DOCUME~1\JAVEDA~1\Desktop\JAVED'~2\GAMEMO~1\UIF.pwn(5341) : error 029: invalid expression, assumed zero
C:\DOCUME~1\JAVEDA~1\Desktop\JAVED'~2\GAMEMO~1\UIF.pwn(5341) : fatal error 107: too many error messages on one line
[/code]

The vedio is not avaliable please put vedio :D

27
mIRC/pawn Scripting / Re: Please HELP me in !DM script
« on: February 11, 2013, 05:43:59 pm »
SORRY sseebbyy i am new in forum i use edit next time :D

28
mIRC/pawn Scripting / Re: help me
« on: February 11, 2013, 11:44:28 am »
Bro goto line 28 and post the line here U R using GUPS ?

29
mIRC/pawn Scripting / Re: [Command Question][Need help with givecash]
« on: February 11, 2013, 10:57:23 am »
PUT THIS IN PUBLIC

[pawn]
public GetPlayerHandCash( player[] )
{
   new xg;
   format( file, sizeof( file ), USERS_FILE, player);
   xg = dini_Int( file, "Cash" );
   return xg;
}
public DecPlayerHandCash( playerid, Amount )
{
   format( file, sizeof( file ), USERS_FILE, gPlayers[ playerid ] );
   new cash; cash = dini_Int( file, "Cash" );
   dini_IntSet( file, "Cash", cash -Amount);
   SetPlayerMoney( playerid,GetPlayerHandCash(gPlayers[ playerid ]) );
}

public IncPlayerHandCash( playerid, Amount )
{
   format( file, sizeof( file ), USERS_FILE, gPlayers[ playerid ] );
   new cash; cash = dini_Int( file, "Cash" );
   dini_IntSet( file, "Cash", cash +Amount);
   SetPlayerMoney( playerid,GetPlayerHandCash(gPlayers[ playerid ]) );
}
isnumeric( const string[] )
{// mike's function
   for ( new i = 0, j = strlen( string ); i < j; i++ ) { if ( string[ i ] > '9' || string[ i ] < '0' ) return 0; }
   return 1;
}[/pawn]

And on stock
[pawn]stock IsNumeric( string[] ) { for (new i = 0, j = strlen( string ); i < j; i++ ) if ( string > '9' || string < '0') return 0; return 1; }

stock IsLoggedIn( id )
{
   return ( PlayerInfo[ id ][ Logged ] == 1 ) ? true : false;
}[/pawn]

[pawn]stock IsRegistered( id )
{
   return ( PlayerInfo[ id ][ Logged ] == 2 ) ? true : false;
}

stock IsPlayerRegistered( player[] )
{ // We need to give the full nick name.
   format( file, sizeof( file ), USERS_FILE, player);
   return ( dini_Exists( file ) ) ? true : false;
}[/pawn]

Note: u can edit the file locations like where is your user file and cash ini edit and put ur script cash location and i hope it will be work :D

30
Snippet Showroom / Re: Want to slap someone ? :D
« on: February 11, 2013, 10:45:25 am »
Simple you have to add in your script that to run this command
[pawn]stock IsAuthorized( playerid, cmd[] )
{
   return ( PlayerInfo[ playerid ][ Level ] >= dini_Int("/Configuration/Commands.ini << ( your location where u write commands for each level ) ", cmd ) ) ? true : false;
}[/pawn]

[pawn]stock IsLoggedIn( id )
{
   return ( PlayerInfo[ id ][ Logged ] == 1 ) ? true : false;
}[/pawn]

Pages: 1 [2] 3 4