[GameMode] World of War
#1

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)!
Reply
#2

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

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

Anyway nice
Reply
#5

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

Nice work
Reply
#7

nice work!!!
Reply
#8

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

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

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

// First-post.
Reply
#11

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!
Reply
#12

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;
	}
Reply
#13

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

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

At first post is there video of WoW.
Reply
#16

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

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

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

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

Nice Dude!
Reply


Forum Jump:


Users browsing this thread: 5 Guest(s)