SA-MP Forums Archive
[GameMode] World of War - 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] World of War (/showthread.php?tid=241350)

Pages: 1 2


World of War - Typhome - 17.03.2011

World of War
My second gamemode (WoW) was done about ~year ago. (From scratch)

I haven't updated still that gamemode when gamemode was released and played, so im not gonna update this gamemode.

That is little gamemode.

Features:
4 of team (Estonia, USA, Russia, German)
Rank system (One enemy kill = One score)
Anti-team kill
Realistic object's

Commands:
/ahelp - Crew commands
/slap
/kick
/ban
/makeadmin
/help
/stats
/rank
/donator
/r - Radio
/asdveh - Spawn vehicle

Video:
[ame]http://www.youtube.com/watch?v=Oq82UGz1FRM[/ame]

Download:
Look at attachement. (Pwn + Amx)

Attetion! Please dont take my credits off (Typhome)!



Re: World of War - SkizzoTrick - 17.03.2011

I am not going to test it.
Know why?Because i do not get any information about it in the description ...I don't know if im wasting my time or not.

Just kiddin' :-j,it looks nice but you really should add a bigger description


Re: World of War - Typhome - 17.03.2011

Quote:
Originally Posted by SkizzoTrick
Посмотреть сообщение
I am not going to test it.
Know why?Because i do not get any information about it in the description ...I don't know if im wasting my time or not.

Just kiddin' :-j,it looks nice but you really should add a bigger description
Don't download, don't watch the topic, then you don't waste your time's.


Re: World of War - Ironboy - 17.03.2011

Anyway nice


Re: World of War - Typhome - 17.03.2011

Quote:
Originally Posted by Ironboy
Посмотреть сообщение
Anyway nice
Thanks.


Re: World of War - BASITJALIL - 18.03.2011

Nice work


Re: World of War - Medal Of Honor team - 18.03.2011

nice work!!!


Re: World of War - Typhome - 18.03.2011

Quote:
Originally Posted by BASITJALIL
Посмотреть сообщение
Nice work
Quote:
Originally Posted by Medal Of Honor team
Посмотреть сообщение
nice work!!!
Thanks.


Re : World of War - Soumi - 18.03.2011

nice job !! But add some Screen shots , videos or more Informations


Re: Re : World of War - Typhome - 18.03.2011

Quote:
Originally Posted by Soumi
Посмотреть сообщение
nice job !! But add some Screen shots , videos or more Informations
I will add after.

// First-post.


- james_b - 19.03.2011

whats the admin commands?

ok, i found i do /ahelp but i do /rcon login (password) and then /ahelp and "you are not admin" then i try /makeadmin ID LVL and it say you are no the owner!


Re: World of War - Typhome - 19.03.2011

Quote:
Originally Posted by james_b
View Post
ok, i found i do /ahelp but i do /rcon login (password) and then /ahelp and "you are not admin" then i try /makeadmin ID LVL and it say you are no the owner!
You need edit the user file of admin level.

Or just replace /makeadmin with this:

Code:
	if(strcmp(cmd, "/makeadmin", true) == 0)
	{
	    if(IsPlayerConnected(playerid))
	    {
			tmp = strtok(cmdtext, idx);
			if(!strlen(tmp))
			{
				SendClientMessage(playerid, COLOR_SAY, "USAGE: /makeadmin [ID] [level]");
				return 1;
			}
			new para1;
			new level;
			para1 = ReturnUser(tmp);
			tmp = strtok(cmdtext, idx);
			level = strval(tmp);
			if(IsPlayerAdmin(playerid) || PlayerInfo[playerid][pAdmin] == 2)
			{
			    if(IsPlayerConnected(para1))
			    {
			        if(para1 != INVALID_PLAYER_ID)
			        {
						GetPlayerName(para1, giveplayer, sizeof(giveplayer));
						GetPlayerName(playerid, sendername, sizeof(sendername));
						PlayerInfo[para1][pAdmin] = level;
						format(string, sizeof(string), "   You have been promoted to a level %d admin by %s", level, sendername);
						SendClientMessage(para1, COLOR_SAY, string);
						format(string, sizeof(string), "   You have promoted %s to a level %d admin.", giveplayer,level);
						SendClientMessage(playerid, COLOR_SAY, string);
					}
				}
			}
			else
			{
				SendClientMessage(playerid, COLOR_SAY, "You are not owner!");
			}
		}
		return 1;
	}



Re: World of War - Pz - 19.03.2011

Quote:
Originally Posted by Typhome
View Post
You need edit the user file of admin level.

Or just replace /makeadmin with this:

Code:
	if(strcmp(cmd, "/makeadmin", true) == 0)
	{
	    if(IsPlayerConnected(playerid))
	    {
			tmp = strtok(cmdtext, idx);
			if(!strlen(tmp))
			{
				SendClientMessage(playerid, COLOR_SAY, "USAGE: /makeadmin [ID] [level]");
				return 1;
			}
			new para1;
			new level;
			para1 = ReturnUser(tmp);
			tmp = strtok(cmdtext, idx);
			level = strval(tmp);
			if(IsPlayerAdmin(playerid) || PlayerInfo[playerid][pAdmin] == 2)
			{
			    if(IsPlayerConnected(para1))
			    {
			        if(para1 != INVALID_PLAYER_ID)
			        {
						GetPlayerName(para1, giveplayer, sizeof(giveplayer));
						GetPlayerName(playerid, sendername, sizeof(sendername));
						PlayerInfo[para1][pAdmin] = level;
						format(string, sizeof(string), "   You have been promoted to a level %d admin by %s", level, sendername);
						SendClientMessage(para1, COLOR_SAY, string);
						format(string, sizeof(string), "   You have promoted %s to a level %d admin.", giveplayer,level);
						SendClientMessage(playerid, COLOR_SAY, string);
					}
				}
			}
			else
			{
				SendClientMessage(playerid, COLOR_SAY, "You are not owner!");
			}
		}
		return 1;
	}
Yeah right. But anyways, I suppose you're the developer of this game mode. Consider doing as he mentioned, ability to RCON administrators to make administrators instead of editing user files.

Edit - Never mind, you decided to put a good code for what I mentioned.


Re: World of War - Typhome - 19.03.2011

Always.. create "accounts" folder in "scriptfiles", then system can create userfile's.


Re: World of War - Typhome - 20.03.2011

At first post is there video of WoW.


Re: World of War - Mr.Youssef - 07.04.2011

Nice GM, i have just 1warning

samp03csvr_R2-2_win32\pawno\include\FairPlay.inc(52) : warning 235: public function lacks forward declaration (symbol "INC_SetVehiclePos")
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase


1 Warning.


Re: World of War - Dark_Thunder - 07.04.2011

honestly i was looking for a Gm like this bcoz i dont have time to create frm scratch anywayz can i edit it WITHOUT DELETING CREDITS


Re: World of War - Typhome - 09.04.2011

Quote:
Originally Posted by Mr.Youssef
View Post
Nice GM, i have just 1warning

samp03csvr_R2-2_win32\pawno\include\FairPlay.inc(52) : warning 235: public function lacks forward declaration (symbol "INC_SetVehiclePos")
Pawn compiler 3.2.3664 Copyright © 1997-2006, ITB CompuPhase


1 Warning.
Delete include FairPlay from this GM. (That include makes warning's)

Quote:
Originally Posted by Dark_Thunder
View Post
honestly i was looking for a Gm like this bcoz i dont have time to create frm scratch anywayz can i edit it WITHOUT DELETING CREDITS
Yes, you can edit, if you don't delete those credits.


Re: World of War - Typhome - 09.04.2011

This GM is avabile at server.

HostName: World of War
Address: 212.47.212.31:8000
Players: x / 50
Ping: x
Mode: World of War
Map: San Andreas

World of War gamemode update is comming.


Re: World of War - Admigo - 10.04.2011

Nice Dude!