need scripter's - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (
https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: need scripter's (
/showthread.php?tid=92036)
need scripter's -
sggassasin - 18.08.2009
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
Re: need scripter's -
Correlli - 18.08.2009
And your offer is? And next time post in script request topic.
Re: need scripter's -
sggassasin - 18.08.2009
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
|
Re: need scripter's -
Correlli - 18.08.2009
I'm not an idiot, you've edited your post after i posted.
Re: need scripter's -
craponnaruto - 18.08.2009
OK what do I need to script?Maps,DM's,etc.?
Re: need scripter's -
sggassasin - 18.08.2009
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 ...
Re: need scripter's -
craponnaruto - 18.08.2009
OK what first?The skin script?
Re: need scripter's -
sggassasin - 18.08.2009
yes plz so it gives a varible so it turns them into a cop
Re: need scripter's -
craponnaruto - 18.08.2009
Ok no problem.
Re: need scripter's -
CAR - 18.08.2009
I looked few days ago to this...
Only i make a base for a team. Maybe can use this?
Above:
Код:
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.