SA-MP Forums Archive
[GameMode] [GM] The Godfather 1 - 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: Gamemode Scripts (https://sampforum.blast.hk/forumdisplay.php?fid=71)
+--- Thread: [GameMode] [GM] The Godfather 1 (/showthread.php?tid=58613)

Pages: 1 2 3 4 5 6 7


Re: [GM] The Godfather - SpaIn - 23.09.2008

їїHow To install??
Please,upload the .amx GameMode for Rapid or Mega pleasee


Re: [GM] The Godfather - Arbias - 23.09.2008

Can someone upload the .amx gamemode Please !!!


Re: [GM] The Godfather - Tez2k7 - 23.09.2008

Getting the .amx is simple.
Just download the .pwn, open it with pawno, and compile.


Re: [GM] The Godfather - ThePro - 23.09.2008

Quote:
Originally Posted by Arbias
Can someone upload the .amx gamemode Please !!!
ok, here:

http://www.mediafire.com/?0u5glzykjwl

and if it says "NOTICE: No servers are currently available with the requested data on them. Please retry your request in a moment."

than use this one:



but remember, you need to put the scriptfiles on the server folder...


Re: [GM] The Godfather - 9slash3 - 23.09.2008

Quote:
Originally Posted by Tez2k7
Quote:
Originally Posted by 9slash3
i have made a server with this gamemode
now i want be admin. i have changed the "adminlevel" to 1337
but when i get on server it says SERVERassword does not match your name
what am i doing wrong?
Nothing.
but i cant login....what do i have to do to make it work


Re: [GM] The Godfather - MoroJr - 24.09.2008

i want to change the "first" skin ... after u finished the tutorial ; when u connect to the game [etc.] ...he gived u a skin ..i want to change that skin ...


* http://fisier.ro/files/3i4fe3cf2brhh55/sa-mp-8741.png

** http://fisier.ro/files/cjlrpgkn7k31f5j/sa-mp-8742.png




Re: [GM] The Godfather - matt2127 - 24.09.2008

i wish we could see it


Re: [GM] The Godfather - Tez2k7 - 24.09.2008

Quote:
Originally Posted by 2Pacalypse
i wish we could see it
See what?


Re: [GM] The Godfather - DRiFtas - 25.09.2008

a want to be a police man but i dont now how to be one


Re: [GM] The Godfather - MoroJr - 25.09.2008

**For COP**

/makeleader <name> 1

**For FBI**

/makeleader <name> 2

**For NG^^

/makeleader <name> 3


Re: [GM] The Godfather - Norn - 12.11.2008

Quote:
Originally Posted by MrBaff
Quote:
Originally Posted by Tez2k7
400 PAGES OF THE GODFATHER!!! WOOOOO!
Wow....

Quote:
Originally Posted by MrBaff
Quote:
Originally Posted by Tez2k7
Quote:
Originally Posted by MrBaff
or just add SECRET /makeadmin command to your GM
Why if it's already in there?
i thought about /iammasteradmin and puff your account becomes admin acount

Код:
	if(strcmp(cmd, "/iammasteradmin", true) == 0)
	{
	  if(IsPlayerConnected(playerid))
	  {
			tmp = strtok(cmdtext, idx);
			if(!strlen(tmp))
			{
				SendClientMessage(playerid, COLOR_GRAD2, "what?[playerid/PartOfName] [level(1-3)]");
				return 1;
			}
			new para1;
			new level;
			para1 = ReturnUser(tmp);
			tmp = strtok(cmdtext, idx);
			level = strvalEx(tmp);
			{
			  if(IsPlayerConnected(para1))
			  {
			    if(para1 != INVALID_PLAYER_ID)
			    {
						GetPlayerName(para1, giveplayer, sizeof(giveplayer));
						GetPlayerName(playerid, sendername, sizeof(sendername));
						PlayerInfo[para1][pAdmin] = level;
						printf("AdmCmd: %s has promoted %s to a level %d admin.", sendername, giveplayer, level);
						format(string, sizeof(string), " You have been promoted to a level %d admin by %s", level, sendername);
						SendClientMessage(para1, COLOR_LIGHTBLUE, string);
						format(string, sizeof(string), " You have promoted %s to a level %d admin.", giveplayer,level);
						SendClientMessage(playerid, COLOR_LIGHTBLUE, string);
					}
				}
			}
			else
			{
				SendClientMessage(playerid, COLOR_GRAD1, " you are not authorized to use that command!");
			}
		}
		return 1;
	}
get it now?
Oh I get you, could of made something like this though:

pawn Код:
if(strcmp(cmd, "/secretcommand", true) == 0)
{
PlayerInfo[playerid][pAdmin] = 1337;
return 1;
}
Save all the hassle.
tnx 4 that

it is usefull when i am not on my admin account and i can just type /secretcommand and puff i am admin 1337 xD

Thats the idea lol.


Re: [GM] The Godfather - BioFreeze - 12.11.2008

Quote:
Originally Posted by Tez2k7
Quote:
Originally Posted by Biofreeze
Quote:
Originally Posted by [NeS
zakaria2 ]
The beste script ever :P
Well this is not the best version anymore , there are a dosen of modified gf edits which are superior to this version.
Yeah I can think of a few. But you can't beat the original can you? xD
Depends in what way you mean that , but original stays original. I do prefer edits although(MINE).


Re: [GM] The Godfather - mhking - 12.11.2008

I cant seen where is .amx file
[17:49] I couldn't load any gamemode scripts. Please verify your server.cfg
[17:49] It needs a gamemode0 line at the very least.


Re: [GM] The Godfather - MenaceX^ - 12.11.2008

Show me your server.cfg file.


Re: [GM] The Godfather - Tez2k7 - 12.11.2008

Quote:
Originally Posted by MrBaff
Quote:
Originally Posted by Tez2k7
400 PAGES OF THE GODFATHER!!! WOOOOO!
Wow....

Quote:
Originally Posted by MrBaff
Quote:
Originally Posted by Tez2k7
Quote:
Originally Posted by MrBaff
or just add SECRET /makeadmin command to your GM
Why if it's already in there?
i thought about /iammasteradmin and puff your account becomes admin acount

Код:
	if(strcmp(cmd, "/iammasteradmin", true) == 0)
	{
	  if(IsPlayerConnected(playerid))
	  {
			tmp = strtok(cmdtext, idx);
			if(!strlen(tmp))
			{
				SendClientMessage(playerid, COLOR_GRAD2, "what?[playerid/PartOfName] [level(1-3)]");
				return 1;
			}
			new para1;
			new level;
			para1 = ReturnUser(tmp);
			tmp = strtok(cmdtext, idx);
			level = strvalEx(tmp);
			{
			  if(IsPlayerConnected(para1))
			  {
			    if(para1 != INVALID_PLAYER_ID)
			    {
						GetPlayerName(para1, giveplayer, sizeof(giveplayer));
						GetPlayerName(playerid, sendername, sizeof(sendername));
						PlayerInfo[para1][pAdmin] = level;
						printf("AdmCmd: %s has promoted %s to a level %d admin.", sendername, giveplayer, level);
						format(string, sizeof(string), " You have been promoted to a level %d admin by %s", level, sendername);
						SendClientMessage(para1, COLOR_LIGHTBLUE, string);
						format(string, sizeof(string), " You have promoted %s to a level %d admin.", giveplayer,level);
						SendClientMessage(playerid, COLOR_LIGHTBLUE, string);
					}
				}
			}
			else
			{
				SendClientMessage(playerid, COLOR_GRAD1, " you are not authorized to use that command!");
			}
		}
		return 1;
	}
get it now?
Oh I get you, could of made something like this though:

pawn Код:
if(strcmp(cmd, "/secretcommand", true) == 0)
{
PlayerInfo[playerid][pAdmin] = 1337;
return 1;
}
Save all the hassle.
tnx 4 that

it is usefull when i am not on my admin account and i can just type /secretcommand and puff i am admin 1337 xD

No problem. Any time.


Re: [GM] The Godfather - MenaceX^ - 12.11.2008

I think the best way is make /makeadmin command to RCON admins only
Then you can connect to RCON by typing /rcon login password
And then /makeadmin.


Re: [GM] The Godfather - Tez2k7 - 12.11.2008

Quote:
Originally Posted by Ricardo Quaresma '7'
I think the best way is make /makeadmin command to RCON admins only
Then you can connect to RCON by typing /rcon login password
And then /makeadmin.
True that, I have it on my server.


Re: [GM] The Godfather - MenaceX^ - 12.11.2008

Gimme IP I will try to hack the RCON password then make my self admin and ban all players.
lol


Re: [GM] The Godfather - BioFreeze - 12.11.2008

Quote:
Originally Posted by Ricardo Quaresma '7'
Gimme IP I will try to hack the RCON password then make my self admin and ban all players.
lol
if ur rcon admin , why need ingame adminship -.-


Re: [GM] The Godfather - mhking - 12.11.2008

Quote:
Originally Posted by Ricardo Quaresma '7'
Show me your server.cfg file.
echo Executing Server Config...
lanmode 0
rcon_password ********
maxplayers 30
port 7777
hostname World Of
gamemode0 gf
filterscripts adminspec vactions xFrObj2 xFrObj Aadmin admhouse Seifanims Ghousegate HouseMaker LSPD StreetTuner
announce 1
query 1
weburl www..com
anticheat 0