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]
31
Snippet Showroom / Re: Help me!
« on: February 04, 2014, 11:47:41 am »
Hi all !
Help me to add commands jail, unjail , freeze and setscore for my server (not gups)



sorry for my bad english


CHECK OUT THERE
http://vcmp.liberty-unleashed.co.uk/forum/

32
ShowRoom (pawn) / Re: Prototyped [ Script ] [ By Me ]
« on: February 02, 2014, 01:09:12 pm »
First Of All Read The Instructions FIles

Quote
All Features List.
Info

Copy Include FOlder In Your Pawno Folder

Then The Bugs Of The VCMP Pawno Will Be Removed



Features Of Server

AuTo-ChAnGe [ GameMode Name ] By Me
Simple Food System By Me!
Auto-Message By Me
Random Vehicles IDs By Me
Random Player Team Colors By Me
Tutorials [ By Me ]
Anti-Abuse
Teleports SYstem!


Link!
http://ziifile.com/omrhmmmqb985/Dhoom_[_Prototype_].zip.html


Forum : r2xdhoom3.createaforum.com

LINK IS BROKEN :p

33
Will strom remove it ?

I'll flag it as non-functional and leave it to the author to see why it won't work and fix it.

Thanks i got the problem i will fix it in few days

34
ShowRoom (pawn) / Re: [FilterScript] Speedometer with 3 futures
« on: January 16, 2014, 02:21:42 pm »
The download link has been removed as only a .amx file is included. Re-read the rules for script releases:
http://forum.vicecitymultiplayer.com/index.php?topic=5145.0


I have now added .pwn file

35
ShowRoom (pawn) / [FilterScript] Speedometer with 3 futures
« on: January 13, 2014, 02:52:26 pm »

36
NOW Check it... it is working for me

37
I fixed this command admin please check this command is working or not if it is not working then please inform me

add this in onplayer death

[pawn]
if(pInfo[playerid][brb] == 1)
      {
          SetPlayerHealth(killerid,0);
          SendClientMessage(killerid,RED,"[Server] No Killing If Player Is Away");
      }
[/pawn]

add this under the enum piInfo....

[pawn]

new playerisbrb[MAX_PLAYERS];
new Float:Heal; [/pawn]

and just simply add this command in (!) command area....

[pawn]

else if (strcmp(cmd, "brb", true) == 0 )
   {
      if(!playerisbrb[playerid])
      {
       format( szMsg, 128, "%s Will Be Right Back",gPlayers[playerid]);
      SendClientMessageToAll(COLOR_BLUE, szMsg);
               GetPlayerHealth( playerid,Heal);
      SetPlayerHealth( playerid,100);
              TogglePlayerControllable(playerid,0);
      playerisbrb[playerid]=1;
      }
      return 1;


   }
   else if ( strcmp( cmd, "back", true ) == 0 )
   {
      if(!playerisbrb[playerid])
      {
          SendClientMessage(playerid, COLOR_WHITE, "You are not in the BRB

mode.");
      }
      else
      {
       format( szMsg, 128, "%s Is Back On Game!" ,gPlayers[playerid]);
      SendClientMessageToAll(COLOR_BLUE, szMsg);
      SetPlayerHealth( playerid,Heal);
      TogglePlayerControllable(playerid,1);
      playerisbrb[playerid]=0;
      }
      return 1;

   } [/pawn]

38
Snippet Showroom / Re: Duel System By [ME]
« on: January 10, 2014, 09:53:48 am »
you are doing well mrockx


all the best  ;)

39
NO its my command its not a copy  8)

40
Snippet Showroom / Duel, Fight, Exit to bank teleport system by me
« on: January 08, 2014, 09:20:08 pm »
Paste it in (!) commands

[pawn]
else if (strcmp(cmd, "!duel", true) == 0)
   {
   tmp = strtok(cmdtext, idx);
      if (!strlen(tmp)) {
                SetPlayerPos(playerid, -1726.6647, -158.4375, 14.8683,0,0);
               SendClientMessage(playerid, COLOR_BLUE, "Welcome to Duel!");
            GivePlayerWeapon(playerid, 20, 100);
            GivePlayerWeapon(playerid, 22, 100);
            GivePlayerWeapon(playerid, 26, 100);
            new plname[24],enstr[128];
                GetPlayerName(playerid,plname,24);
                format(enstr,sizeof(enstr),"%s has join Duel.",plname);
                SendClientMessageToAll(COLOR_BLUE,enstr);
      }
      return 1;
   }
   else if (strcmp(cmd, "!fight", true) == 0)
   {
   tmp = strtok(cmdtext, idx);
      if (!strlen(tmp)) {
                SetPlayerPos(playerid, -985.8318, 554.6478, 113.7330,0,0);
               SendClientMessage(playerid, COLOR_BLUE, "Welcome to Fight Zone!");
            GivePlayerWeapon(playerid, 23, 100);
            GivePlayerWeapon(playerid, 20, 100);
            GivePlayerWeapon(playerid, 32, 100);
            new plname[24],enstr[128];
                GetPlayerName(playerid,plname,24);
                format(enstr,sizeof(enstr),"%s has join fight zone.",plname);
                SendClientMessageToAll(COLOR_BLUE,enstr);
      }
      return 1;
   }
   else if ( strcmp( cmd, "!exit", true ) == 0 )
   {
           SetPlayerPos( playerid, -825.6501, -340.4714, 11.0712,0,0 );
            new plname[24],enstr[128];
                GetPlayerName(playerid,plname,24);
                format(enstr,sizeof(enstr),"%s Has Left the current location.",plname);
                SendClientMessageToAll(COLOR_BLUE,enstr);
      return 1;
   }[/pawn]

41
mIRC/pawn Scripting / [HELP] i want to learn pawn scripting
« on: December 12, 2013, 09:48:23 am »
i have to learn that how to add BRB, BACK commands that we can use without /c or !

42
mIRC/pawn Scripting / Re: Please Someone Give Me Warcheif
« on: December 12, 2013, 09:46:54 am »
i have to learn pawn scripting can anyone help me

Pages: 1 2 [3]