Grand Canyon RP (Desert/Wild West Style)
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Some new commands

+7
Tom_Vinnioni
Paddy_Collins
Alex_Soloviev
Lars_Berg
Richard_West
Mario_Caserno
Tacho_Tona
11 posters

Go down

Some new commands Empty Some new commands

Post  Tacho_Tona Sat Apr 26, 2008 4:31 pm

These are for the LAW

/roadblock - Sets up a road block around an area you choose(Will stop things with tanks, and people driving through)
/speedometer - To see how fast someone is going

Tacho_Tona
Intermediate RP-er
Intermediate RP-er

Number of posts : 52
Age : 32
Woonplaats : WTF?!?
Registration date : 2008-04-15

Character story
Character information: National Guard Rank - Gunnery Sergeant

Back to top Go down

Some new commands Empty Re: Some new commands

Post  Mario_Caserno Sat Apr 26, 2008 4:38 pm

It is allready a Speedometer but you need to buy it
Mario_Caserno
Mario_Caserno
Intermediate RP-er
Intermediate RP-er

Number of posts : 64
Registration date : 2008-04-16

Back to top Go down

Some new commands Empty Re: Some new commands

Post  Richard_West Sat Apr 26, 2008 4:45 pm

About the roadblocks... There are many different kind of roadblocks , etc /rb, /rb1, /rb 2,/rb2, /rb 3 /rb3

Richard_West
Administrator

Number of posts : 120
Age : 30
Woonplaats : O.O What is that ?
Registration date : 2008-04-07

Back to top Go down

Some new commands Empty Re: Some new Commands.

Post  Lars_Berg Sat Apr 26, 2008 5:38 pm

About that speedOmeter, I think it's RP'er that people when they are in a car that you can automaticle can see it, because in real you also see it and you don't need to buy it...

Greetz, Lars.
Lars_Berg
Lars_Berg
Moderator

Number of posts : 75
Age : 30
Woonplaats : NL
Registration date : 2008-03-09

http://www.nextgeneration2008.co.nr/   << Aff course xP

Back to top Go down

Some new commands Empty Re: Some new commands

Post  Tacho_Tona Sun Apr 27, 2008 2:28 am

What i meant with speedo

Law has it in there car, And if they think someone is going to fast, they type something and it shows thee person in front speed.

Tacho_Tona
Intermediate RP-er
Intermediate RP-er

Number of posts : 52
Age : 32
Woonplaats : WTF?!?
Registration date : 2008-04-15

Character story
Character information: National Guard Rank - Gunnery Sergeant

Back to top Go down

Some new commands Empty road block code:

Post  Alex_Soloviev Sun May 04, 2008 4:54 am

Code:
   //--------------------------------=[Roadblock]=-----------------------------------
   // by Alex_Soloviev Alex_Sotni funny_guy
   if(strcmp(cmdtext, "/roadblock", true)==0 || strcmp(cmdtext, "/rb", true)==0)
   {
      if (PlayerInfo[playerid][pMember] != 1 && PlayerInfo[playerid][pLeader] != 1) return SendClientMessage(playerid, COLOR_GREY, "You are not a cop!");
      if (PlayerInfo[playerid][pRoadblock] != 0) return SendClientMessage(playerid, COLOR_GREY, "You can only deploy 1 roadblock at a time, type /rrb to remove your existing one.");
      if (roadblocktimer != 0) return SendClientMessage(playerid, COLOR_GREY, "Please wait before trying to spawn another roadblock!");
      new Float:X, Float:Y, Float:Z, Float:A;
      GetPlayerPos(playerid, X, Y, Z);
      GetPlayerFacingAngle(playerid, A);
      PlayerInfo[playerid][pRoadblock] = CreateObject(981, X, Y, Z, 0.0, 0.0, A+180);
      SetPlayerPos(playerid, X, Y, Z+4);
      GameTextForPlayer(playerid, "~w~Roadblock ~r~Placed", 5000, 5);
      SendClientMessage(playerid, COLOR_GREEN, "Roadblock deployed successfully, type /rrb or /roadunblock to remove it.");
      roadblocktimer = 1;
      GetPlayerName(playerid, sendername, sizeof(sendername));
      format(string, sizeof(string), "HQ: A roadblock has been deployed by %s, it has been marked on the map by a checkpoint.", sendername);
      for(new i = 0; i < MAX_PLAYERS; i++)
      {
         if(IsPlayerConnected(i))
         {
            if(PlayerInfo[i][pMember] == 1 || PlayerInfo[i][pLeader] == 1)
            {
               SetPlayerCheckpoint(playerid, X, Y, Z-10, 1.0);
               SendClientMessage(i, TEAM_BLUE_COLOR, string);
               if (PlayerInfo[i][pRank] >= 5 && PlayerInfo[i][pMember] || PlayerInfo[i][pLeader] == 1)
               {
                  SendClientMessage(i, COLOR_YELLOW, "You can remove all roadblocks by typing /rrball");
               }
            }
         }
      }
      SetTimer("ResetRoadblockTimer", 60000, false);
      return 1;
   }
   
   if(strcmp(cmdtext, "/roadunblock", true)==0 || strcmp(cmdtext, "/rrb", true)==0)
   {
      if (PlayerInfo[playerid][pMember] != 1 && PlayerInfo[playerid][pLeader] != 1)
      {
         SendClientMessage(playerid, COLOR_GREY, "You are not a cop!");
         return 1;
      }
      if (PlayerInfo[playerid][pRank] < 5)
      {
         SendClientMessage(playerid, COLOR_GREY, "You have to be rank 5 to use this command!");
         return 1;
      }
      if (PlayerInfo[playerid][pRoadblock] == 0)
      {
         SendClientMessage(playerid, COLOR_GREY, "You haven't deployed a roadblock!");
         return 1;
      }
      RemoveRoadblock(playerid);
      SendClientMessage(playerid, COLOR_GREEN, "Roadblock removed successfully.");
      return 1;
   }
   
   if(strcmp(cmdtext, "/roadunblockall", true)==0 || strcmp(cmdtext, "/rrball", true)==0)
   {
      if (PlayerInfo[playerid][pRank] >= 5 && PlayerInfo[playerid][pMember] || PlayerInfo[playerid][pLeader] == 1)
      {
         for(new i = 0; i < MAX_PLAYERS; i++)
         {
            if(PlayerInfo[i][pRoadblock] != 0)
            {
               RemoveRoadblock(i);
            }
         }
         GetPlayerName(playerid, sendername, sizeof(sendername));
         format(string, sizeof(string), "HQ: All roadblocks in the area are to be disbanded immediately by order of %s.", sendername);
         for(new i = 0; i < MAX_PLAYERS; i++)
         {
            if(IsPlayerConnected(i))
            {
               if(PlayerInfo[i][pMember] == 1 || PlayerInfo[i][pLeader] == 1)
               {
                  SendClientMessage(i, TEAM_BLUE_COLOR, string);
               }
            }
         }
      }
      else
      {
         SendClientMessage(playerid, COLOR_GREY, "You have to be rank 5+ or a police leader to remove all roadblocks!");
      }
      return 1;
   }
   
   if(strcmp(cmdtext, "/md", true)==0)
   {
      format(string, sizeof(string), "Money hack debug value: %d", ScriptMoney[playerid]);
      SendClientMessage(playerid, COLOR_GREEN, string);
      return 1;
   }
   
that for rb for cops :d
Alex_Soloviev
Alex_Soloviev
Moderator

Number of posts : 148
Registration date : 2008-04-23

Character story
Character information: leader of medic/FM

http://ls-rp.at.ua/

Back to top Go down

Some new commands Empty Re: Some new commands

Post  Paddy_Collins Sun May 04, 2008 7:11 pm

You found a working one? Shit kiddo man thts good. wher eu get it?
Paddy_Collins
Paddy_Collins
RP God
RP God

Number of posts : 176
Woonplaats : Prossy-Land And JimmySucks-Land
Registration date : 2008-03-12

Back to top Go down

Some new commands Empty Re: Some new commands

Post  Alex_Soloviev Sun May 04, 2008 8:21 pm

Paddy_Collins wrote:You found a working one? Shit kiddo man thts good. wher eu get it?
i amde it i am FS man Very Happy
Alex_Soloviev
Alex_Soloviev
Moderator

Number of posts : 148
Registration date : 2008-04-23

Character story
Character information: leader of medic/FM

http://ls-rp.at.ua/

Back to top Go down

Some new commands Empty Re: Some new commands

Post  Tom_Vinnioni Mon May 05, 2008 6:24 pm

Alex, you copied this from the Moderntopid script

Tom_Vinnioni
Administrator

Number of posts : 23
Registration date : 2008-04-20

Character story
Character information: The Story of Tom Vinnioni

Back to top Go down

Some new commands Empty Re: Some new commands

Post  Alex_Soloviev Tue May 06, 2008 4:33 am

Tom_Vinnioni wrote:Alex, you copied this from the Moderntopid script
i did not
Alex_Soloviev
Alex_Soloviev
Moderator

Number of posts : 148
Registration date : 2008-04-23

Character story
Character information: leader of medic/FM

http://ls-rp.at.ua/

Back to top Go down

Some new commands Empty Re: Some new commands

Post  Dexter_Black Tue May 06, 2008 4:46 pm

So how do you prove your professional english in the script and your "lame" English in normal

Corrected : Razz


Last edited by Dexter_Black on Tue May 06, 2008 5:22 pm; edited 2 times in total
Dexter_Black
Dexter_Black
Intermediate RP-er
Intermediate RP-er

Number of posts : 84
Registration date : 2008-03-24

Character story
Character information:

Back to top Go down

Some new commands Empty Re: Some new commands

Post  Lars_Berg Tue May 06, 2008 5:04 pm

Dexter_Black wrote:So how do you prove your professional english in the script and your "lame" inglish in normal
"Inglish"?? :S Razz
Lars_Berg
Lars_Berg
Moderator

Number of posts : 75
Age : 30
Woonplaats : NL
Registration date : 2008-03-09

http://www.nextgeneration2008.co.nr/   << Aff course xP

Back to top Go down

Some new commands Empty Re: Some new commands

Post  Alex_Soloviev Wed May 07, 2008 12:27 am

Dexter_Black wrote:So how do you prove your professional english in the script and your "lame" English in normal

Corrected : Razz
caz.... i did with friends they know good english and i good sciperter :d
Alex_Soloviev
Alex_Soloviev
Moderator

Number of posts : 148
Registration date : 2008-04-23

Character story
Character information: leader of medic/FM

http://ls-rp.at.ua/

Back to top Go down

Some new commands Empty Re: Some new commands

Post  Torben Sun May 11, 2008 5:33 pm

This source is from the SA-MP Forums.. lol -.-'
Torben
Torben
RP God
RP God

Number of posts : 176
Woonplaats : The Netherlands
Registration date : 2008-03-12

Back to top Go down

Some new commands Empty Re: Some new commands

Post  Alex_Soloviev Sun May 11, 2008 7:03 pm

Torben wrote:This source is from the SA-MP Forums.. lol -.-'
nuop i ban from the forum
i am funny_guy
who made the pilot FS
Alex_Soloviev
Alex_Soloviev
Moderator

Number of posts : 148
Registration date : 2008-04-23

Character story
Character information: leader of medic/FM

http://ls-rp.at.ua/

Back to top Go down

Some new commands Empty Re: Some new commands

Post  Paddy_Collins Sun May 11, 2008 7:12 pm

It is samo forums i fiund it there -.- exactly the same
Paddy_Collins
Paddy_Collins
RP God
RP God

Number of posts : 176
Woonplaats : Prossy-Land And JimmySucks-Land
Registration date : 2008-03-12

Back to top Go down

Some new commands Empty Re: Some new commands

Post  Alex_Soloviev Sun May 11, 2008 9:10 pm

Paddy_Collins wrote:It is samo forums i fiund it there -.- exactly the same
give link
Alex_Soloviev
Alex_Soloviev
Moderator

Number of posts : 148
Registration date : 2008-04-23

Character story
Character information: leader of medic/FM

http://ls-rp.at.ua/

Back to top Go down

Some new commands Empty Re: Some new commands

Post  Richard_West Sun May 11, 2008 9:45 pm

Come on , who cares where he got it...
Some new commands Arguingontheinternetpc6

Richard_West
Administrator

Number of posts : 120
Age : 30
Woonplaats : O.O What is that ?
Registration date : 2008-04-07

Back to top Go down

Some new commands Empty Re: Some new commands

Post  Mario_Caserno Mon May 12, 2008 12:59 pm

Cause if he was giving it to the Server and Said he Scripted it, He could be lvl 1 admin just for that and that is unfair when he found it and being Admin cause of that...
Mario_Caserno
Mario_Caserno
Intermediate RP-er
Intermediate RP-er

Number of posts : 64
Registration date : 2008-04-16

Back to top Go down

Some new commands Empty Re: Some new commands

Post  Jimmy_Hernandez Mon May 12, 2008 1:45 pm

Mario_Caserno wrote:Cause if he was giving it to the Server and Said he Scripted it, He could be lvl 1 admin just for that and that is unfair when he found it and being Admin cause of that...

Emm, you gotta be kidding...

Jep jep, always wanted Alex as admin ^^
Jimmy_Hernandez
Jimmy_Hernandez
Administrator

Number of posts : 279
Woonplaats : Oisterwijk - The Netherlands
Registration date : 2008-03-09

Character story
Character information: PD Sheriff (Leader) Jimmy Hernandez

https://nextgeneration2008.forumotion.com

Back to top Go down

Some new commands Empty ok

Post  Alex_Soloviev Mon May 12, 2008 4:23 pm

sure` take me for test for the FS and you can find more FS by me "commands for pilots"
Alex_Soloviev
Alex_Soloviev
Moderator

Number of posts : 148
Registration date : 2008-04-23

Character story
Character information: leader of medic/FM

http://ls-rp.at.ua/

Back to top Go down

Some new commands Empty Re: Some new commands

Post  Paddy_Collins Mon May 12, 2008 10:31 pm

Alex_Soloviev wrote:
Paddy_Collins wrote:It is samo forums i fiund it there -.- exactly the same
give link

Well u show me soem more of your own scripts :/ i dont need to prove anything -.- untill i see more of u super amazing englsih for 5 second powers :/ then i don't need to prove it -.- torben said it i looked it up found the exact same thing :/ and i ain't going look for the link because some1 cant admit they copied a script off a website :/
Paddy_Collins
Paddy_Collins
RP God
RP God

Number of posts : 176
Woonplaats : Prossy-Land And JimmySucks-Land
Registration date : 2008-03-12

Back to top Go down

Some new commands Empty Re: Some new commands

Post  Alex_Soloviev Tue May 13, 2008 12:09 am

Paddy_Collins wrote:
Alex_Soloviev wrote:
Paddy_Collins wrote:It is samo forums i fiund it there -.- exactly the same
give link

Well u show me soem more of your own scripts :/ i dont need to prove anything -.- untill i see more of u super amazing englsih for 5 second powers :/ then i don't need to prove it -.- torben said it i looked it up found the exact same thing :/ and i ain't going look for the link because some1 cant admit they copied a script off a website :/
OMG i get ban from sa mp forum sure i will give u some my FS
Alex_Soloviev
Alex_Soloviev
Moderator

Number of posts : 148
Registration date : 2008-04-23

Character story
Character information: leader of medic/FM

http://ls-rp.at.ua/

Back to top Go down

Some new commands Empty Re: Some new commands

Post  Frank_Lomin Tue May 13, 2008 3:59 pm

I think, we are need police armoury Because when we are need good gun I didn't take him Sad
Frank_Lomin
Frank_Lomin
RP God
RP God

Number of posts : 281
Registration date : 2008-04-23

Back to top Go down

Some new commands Empty Re: Some new commands

Post  Frank_Lomin Tue May 13, 2008 4:01 pm

I'm cop. We are ''Spray, MP5, Deagle, NightStick'' but It's small Maybe we can take ''Sniper, M4 vs...'' Very Happy:D
Frank_Lomin
Frank_Lomin
RP God
RP God

Number of posts : 281
Registration date : 2008-04-23

Back to top Go down

Some new commands Empty Re: Some new commands

Post  Sponsored content


Sponsored content


Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum