need scripter's
#1

i there i need some help building a gamemode to run on my clans sever box

i only need 3-4 pepole to help and 1-4 pepole who will come on now and then.


my xfire is :terry12345678

my msn:terryseager2@gmail.com

so thx for ur time



my offer is that you can have admin you are in the creds of makeing this and any donations will go towards you
Reply
#2

And your offer is? And next time post in script request topic.
Reply
#3

lol look


Quote:
Originally Posted by Don Correlli
And your offer is? And next time post in script request topic.


Quote:
Originally Posted by sggassasin
my offer is that you can have admin you are in the creds of makeing this and any donations will go towards you
Reply
#4

I'm not an idiot, you've edited your post after i posted.
Reply
#5

OK what do I need to script?Maps,DM's,etc.?
Reply
#6

Quote:
Originally Posted by Don Correlli
I'm not an idiot, you've edited your post after i posted.
i know lol its just to point it out :P




Quote:
Originally Posted by craponnaruto
OK what do I need to script?Maps,DM's,etc.?
umm well im looking for someone to help make a cops and robbers script so like the following things


when you chose skins you have a choice of cop or cop weapons dealer or fbi agent or you can have a robber or something like that]

when you are a cop in any car and you are chaseing someone with 4 stars you can press 2 and tell someone to get out of there car and if there out of there car you can arrest them

and when they have 3 and less you can ticket them and plenty more so ya ...
Reply
#7

OK what first?The skin script?
Reply
#8

yes plz so it gives a varible so it turns them into a cop
Reply
#9

Ok no problem.
Reply
#10

I looked few days ago to this...
Only i make a base for a team. Maybe can use this?

Above:

Код:
#define TEAM_COP 1
Код:
new gteam[MAX_PLAYERS];
Then OnGameModeInit etc.

Код:
public OnPlayerRequestClass(playerid, classid)
{
	switch (classid) {
  case 0:
  {
		gteam[playerid] = TEAM_COP;
 	}
	return 1;
}
To go in the cop team:

Код:
public OnPlayerCommandText(playerid, cmdtext[])
{
 	if(strcmp(cmd, "/job_cop", true) == 0)
 		{
   		SetPlayerTeam(playerid, 1);
  		}
  		else
  		{
  		SendClientMessage(playerid, COLOR_RED1, "You Are NOT official Police!!");
  		}
	return 1;
}
This is what I have.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)