[GameMode] [GM] The Godfather 1
#81

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

Can someone upload the .amx gamemode Please !!!
Reply
#83

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

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...
Reply
#85

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
Reply
#86

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

Reply
#87

i wish we could see it
Reply
#88

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

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

**For COP**

/makeleader <name> 1

**For FBI**

/makeleader <name> 2

**For NG^^

/makeleader <name> 3
Reply
#91

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.
Reply
#92

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).
Reply
#93

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.
Reply
#94

Show me your server.cfg file.
Reply
#95

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.
Reply
#96

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.
Reply
#97

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.
Reply
#98

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

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 -.-
Reply

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
Reply


Forum Jump:


Users browsing this thread: 9 Guest(s)