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

Pages: [1] 2 3
1
Servers / [0.4] Extreme City 2015
« on: December 14, 2014, 11:04:30 pm »

Server name: || 0.4 || Extreme City 2015 ||
IP: vc-mp.net:5200
Mode: EFS v3.0
Forum:- www.efsvcmp.uboxi.com
IRC :- #EFS4 @ LUnet
Scripter:- RATHORE
Credits:- KraTo$

We Launched Our New 0.4 Server

2
Follow this
1. Search on youtube for portforward
2. After doing pf to live your server on and then goto whatismyip.com
3. Copy the ip and attach ur port like 133.54.54.36:5192
4. Add it in your favorite in vcmp.exe this is your ip people will connect with this ip. Not this 192.168.1.2:5192 this is wrong

any problem add me on facebook [email protected]

3
Servers / Re: [R2x] Dhoom:3 [ GRAND OPENING ] [Abbasi Hosting]
« on: May 06, 2014, 06:27:56 pm »
Nice

4
General Discussion / Re: About Evo wingle 3g wifi
« on: May 06, 2014, 06:23:22 pm »
Yes you can it have bultin router

5
ShowRoom (pawn) / Re: The Black Lagon
« on: April 26, 2014, 08:36:43 pm »
Rofl  he is still stealing commands and not adding  credits

6
mIRC/pawn Scripting / Re: PLs help me make a !lms
« on: April 24, 2014, 08:09:47 pm »
Lms is not a hard system just make few functions and a command thats it

7
Snippet Showroom / Re: Coool pickups and functions
« on: April 24, 2014, 08:03:22 pm »
Mrockx i think you have to do a little correction with colors i mean add the color code instead of color name if some dont have jackwhite named color he will get error or if he is noob then he will get confused

8
mIRC/pawn Scripting / Re: Please i need /c alias
« on: April 24, 2014, 07:55:05 pm »
Maybe have to make a function that get ip onplayerjoin and save the nick in a list with ip

9
Servers / Re: Extreme Fighting Server
« on: April 20, 2014, 11:43:57 pm »
Updated

10
Servers / Re: [R2x] Dhoom 3 [ Server Now Up ]
« on: April 12, 2014, 09:25:41 pm »
I guess dhoom is android games

No Dhoom Is a indian movie

11
Servers / Extreme Fighting Server
« on: April 12, 2014, 09:38:01 am »
Server: Extreme Fighting Server
IP: 111.125.215.55:5194
Players: 0/48
Founder: RATHORE
Co-Founder: DarK_AnGeL
Host: 24/7
Forum: http://efsvcmp.comli.com
IRC: https://kiwiirc.com/client/irc.liberty-unleashed.co.uk/#EFS3
Map: Vice-City

Admin Cmds

ann, kick, kill, drown, mute, unmute, get, ip, freeze, unfreeze, getip, ban, unban, setmon, setlevel, setkills, setdeaths, kickall, freezeall, unfreezeall, killall, drunkall, undrunkall, healall, getall

Player Cmds

(/c) register, login, newpassword, gotoloc, randspawn, nogoto, cash, stats, deposit, withdraw, bank,
(!)givecash, newpassword, level, infp, admins, wep, ping, goto, nogoto, spawnloc, arm
hp, heal, skin, info, scripts, spree, myspree, rules, disarm, addquote, quote, cd, drunk, undrunk, randspawn, wstats, bstats, time, credits, lms, join, playerslms, stuntmode

Vehicle Cmds

(!)buycar, sellcar, sharecar, getcar, gotocar, mycars, mysharecars, delsharecar, eject, fix

Prop Cmds

(!)buyprop, sellprop, shareprop, myprops, gotoprop, myshareprops, delshareprop



12
mIRC/pawn Scripting / Re: Plese help
« on: April 08, 2014, 12:44:03 pm »
Replace this login

[pawn]else if ( strcmp( cmd, "login", true ) == 0 )
   {
      tmp = strtok( cmdtext, idx );
       if ( !strlen( tmp ) ) return SendClientMessage( playerid, COLOR_GREEN, "Usage: /login [Password]" );
       if ( IsRegistered( playerid ) ) return SendClientMessage( playerid, COLOR_RED, "Error: Your nick-name is not registered." );
       if ( IsLoggedIn( playerid ) ) return SendClientMessage( playerid, COLOR_RED, "Error: You have already logged-in." );

       new pass_confirm[ 256 ];
       pass_confirm = dini_Get( file, "Password" );

       if ( strcmp( encrypt( tmp ), pass_confirm, true ) == 0 )
      {
          format( file, sizeof( file ), USERS_FILE, gPlayers[ playerid ] );
         new level, stats, nogoto, noloc, cash, szMsg[ 128 ], IP[ 24 ];
         level = dini_Int( file, "Level" );
         stats = dini_Int( file, "Stats" );
         nogoto = dini_Int( file, "NoGoto" );
         noloc = dini_Int( file, "NoLoc" );
         cash = dini_Int( file, "Cash" );

         GetPlayerIp( playerid, IP, 24 );

         PlayerInfo[ playerid ][ Logged ] = 1;
         PlayerInfo[ playerid ][ Level ] = level;
         PlayerInfo[ playerid ][ Stats ] = stats;
         PlayerInfo[ playerid ][ NoGoto ] = nogoto;
         PlayerInfo[ playerid ][ NoLoc ] = noloc;

         UpDateFile( USERS_FILE, gPlayers[ playerid ], "Login", "1" );
         UpDateFile( USERS_FILE, gPlayers[ playerid ], "Ip", IP );
         
         SendClientMessage( playerid, COLOR_GREEN, "You have logged-in sucessfully." );
         format( szMsg, sizeof( szMsg ), "Nick:[ %s ] Level:[ %d ] Status:[ %s ]", gPlayers[ playerid ], level, StatusTag( level ) );
         SendClientMessage( playerid, COLOR_BLUE, "Do not spam flood, Hacks, Abused" );
         SendClientMessage( playerid, COLOR_BLUE, "See Hackers, Cheaters report to admin !report [nick/id] [reason]" );
         SendClientMessage( playerid, COLOR_GREEN, szMsg );
         SetPlayerMoney( playerid, cash );
      }
      else
      {
          PlayerInfo[ playerid ][ FalseLogins ]++;
          if ( PlayerInfo[ playerid ][ FalseLogins ] >= LOGIN_ATTEMPTS )
         {
              format(str, sizeof( str ), "%s has been kicked. Reason:[ Invalid Login Attempts ]", gPlayers[ playerid ] );
              SendClientMessageToAll( COLOR_RED, str );
              PlayerInfo[ playerid ][ FalseLogins ] = 0;
              Kick( playerid );
         }
         else
         {
             SendClientMessage( playerid, COLOR_RED, "Error: Incorrect password." );
         }
      }
       return 1;
   }[/pawn]


REGISTER

[pawn]if ( strcmp( cmd, "register", true ) == 0 )
   {
      tmp = strtok( cmdtext, idx );
       if ( !strlen( tmp ) ) SendClientMessage( playerid, COLOR_GREEN, "Usage: /c register [Password]" );
      else if ( IsPlayerRegistered( gPlayers[ playerid ] ) )
      {
         format( str, sizeof( str ), "Error: %s is already a registered nick.", gPlayers[ playerid ] );
         SendClientMessage( playerid, COLOR_RED, str );
      }
      else if( IsValidNick ( gPlayers[ playerid ] ) )
      {
         format( str, sizeof( str ), "Error: Your nick-name containes illegal characters. Please remove them." );
         SendClientMessage( playerid, COLOR_RED, str );
      }
       else
      {
         format( file, sizeof( file ), USERS_FILE, gPlayers[ playerid ] );
          new string[ 24 ], IP[ 24 ], szMsg[ 128 ];
         GetPlayerIp( playerid, IP, 24 );
         format( string, 24, "%s", IP );
         dini_Create( file );
         dini_Set( file, "Password", encrypt( tmp ) );
         dini_Set( file, "Login", "1" );
         dini_Set( file, "Bank", "0" );
         dini_Set( file, "Cash", "0" );
         dini_Set( file, "Level", "1" );
         dini_Set( file, "Stats", "1" );
         dini_Set( file, "Ip", string );
         SendClientMessage( playerid, COLOR_GREEN, "You have registered successfully." );
         
         format( szMsg, sizeof( szMsg ), "Dont Forget Your Password:[ %s ]", tmp );
         SendClientMessage( playerid, COLOR_BLUE, "Do not spam flood, Hacks, Abused" );
         SendClientMessage( playerid, COLOR_BLUE, "See Hackers, Cheaters report to admin !report [nick/id] [reason]" );
         SendClientMessage( playerid, COLOR_GREEN, szMsg );

         PlayerInfo[ playerid ][ Logged ] = 1;
         PlayerInfo[ playerid ][ Level ] = 1;
         PlayerInfo[ playerid ][ Stats ] = 1;
      }
      return 1;
   }[/pawn]


Use this pawno

http://www.4shared.com/zip/pC2m6UvOce/VCMP_-_Pawno_By_MUZAMMIL_SADIQ.html

13
Snippet Showroom / Re: Vehicle fix system TESTED {FIXED}
« on: April 02, 2014, 11:37:30 pm »
[pawn]else if(strcmp(cmd, "!fix", true)==0)
{
    if(!IsPlayerInAnyVehicle(playerid)) SendClientMessage(playerid, 0xFF0000AA, "You're on foot");
    else {
        new Float:vhp, vid = GetPlayerVehicleID(playerid);
        GetVehicleHealth(vid, vhp);
        if(vhp == 1000) SendClientMessage(playerid, 0xFF0000AA, "Your vehicle is okay");
        else{
        new cash = GetPlayerMoney(playerid);
        if(cash <= 299) SendClientMessage(playerid, 0xFF0000AA, "You're poor buddy");
        else {
        SendClientMessage(playerid, 0xFFFFFFFF, "Your vehicle has been repaired");
         SetVehicleHealth(vid, 1000);
         DecPlayerHandCash( playerid, 300 );}
         }
    }
}
[/pawn]

Did it work? Huh, amazing, I didnt know I can post working code from mobile phone

your cmd have got many bugs i fixed then it works :-)

14
Snippet Showroom / Re: Vehicle fix system with timer TESTED
« on: March 31, 2014, 11:58:42 am »
You cant make timer inside CMD Did you read this ?

Thanks

Now fixed without timer

15
Snippet Showroom / Vehicle fix system TESTED {FIXED}
« on: March 30, 2014, 10:17:33 pm »
Onplayertext

[pawn]else if(strcmp(cmd, "!fix", true)==0)
{
    if(!IsPlayerInAnyVehicle(playerid)) SendClientMessage(playerid, 0xFF0000AA, "You're on foot");
    else {
        new Float:vhp, vid = GetPlayerVehicleID(playerid);
        GetVehicleHealth(vid, vhp);
        if(vhp == 1000) SendClientMessage(playerid, 0xFF0000AA, "Your vehicle is okay");
        else{
        new cash = GetPlayerMoney(playerid);
        if(cash <= 299) SendClientMessage(playerid, 0xFF0000AA, "You're poor buddy");
        else {
        SendClientMessage(playerid, 0xFFFFFFFF, "Your vehicle has been repaired");
         SetVehicleHealth(vid, 1000);
         DecPlayerHandCash( playerid, 300 );}
         }
    }
}
[/pawn]

Pages: [1] 2 3