game.cfg eror

Having problems with AMRTS? Having problems with your Computer?
Post Reply
User avatar
Petas
Map Maker
Map Maker
Posts: 563
Joined: Tue Jan 06, 2015 1:34 pm
Location: Czech Republic
Contact:
Czech Republic

game.cfg eror

Post by Petas »

hello
I edited a new map and would like to try it
2 players to fight against computer players player tan in color
but something went wrong
I run a map so that both fail players
like it does SideFixed (1)
I post here code and I hope someone can help me thank you in advance
How can I fix this? :-(( :PB idk
___________________Kode___________________________
DefineTeams()
{
CreateTeam("Team-Tan 2", 3)
{
Color(224, 137, 23);

Relations()
{
With("Team-Tan 2", "Enemy");
With("Team-Tan 1", "Enemy");
With("Team 2", "Neutral");
With("Team 1", "Neutral");
}

DefaultClient(0);
AvailablePlay(0);
HasStats(0);
PermanentRadar(0);
RequireAI(0);
Side("army");
SideFixed(0);

Objectives()
{
ReaperId(32);
ReaperId(33);
ReaperId(34);
}

StartRegion(28);
StartPoint(0.119093, 0.125296);
StartYaw(0.000000);
Personality("None");
PainCurrentCluster(0);
UniqueScriptId(0);
ResourceStore(0);
}

CreateTeam("Team-Tan 1", 2)
{
Color(240, 171, 21);

Relations()
{
With("Team-Tan 2", "Enemy");
With("Team-Tan 1", "Enemy");
With("Team 2", "Neutral");
With("Team 1", "Neutral");
}

DefaultClient(0);
AvailablePlay(0);
HasStats(0);
PermanentRadar(0);
RequireAI(0);
Side("army");
SideFixed(0);

Objectives()
{
ReaperId(25);
ReaperId(26);
ReaperId(27);
}

StartRegion(24);
StartPoint(0.869056, 0.125621);
StartYaw(0.000000);
Personality("None");
PainCurrentCluster(0);
UniqueScriptId(0);
ResourceStore(0);
}

CreateTeam("Team 2", 1)
{
Color(0, 0, 0);

Relations()
{
With("Team-Tan 2", "Enemy");
With("Team-Tan 1", "Enemy");
With("Team 2", "Ally");
With("Team 1", "Neutral");
}

DefaultClient(0);
AvailablePlay(1);
HasStats(1);
PermanentRadar(0);
RequireAI(0);
Side("army");
SideFixed(0);

Objectives()
{
ReaperId(21);
ReaperId(22);
ReaperId(23);
}

StartRegion(20);
StartPoint(0.130066, 0.853320);
StartYaw(0.000000);
Personality("None");
PainCurrentCluster(0);
UniqueScriptId(0);
ResourceStore(0);
}

CreateTeam("Team 1", 0)
{
Color(0, 0, 0);

Relations()
{
With("Team-Tan 2", "Enemy");
With("Team-Tan 1", "Enemy");
With("Team 2", "Neutral");
With("Team 1", "Ally");
}

DefaultClient(1);
AvailablePlay(1);
HasStats(1);
PermanentRadar(0);
RequireAI(0);
Side("army");
SideFixed(0);

Objectives()
{
ReaperId(17);
ReaperId(18);
ReaperId(19);
}

StartRegion(16);
StartPoint(0.878876, 0.815757);
StartYaw(0.000000);
Personality("None");
PainCurrentCluster(0);
UniqueScriptId(0);
ResourceStore(0);
}
}
I'm not saying I have good maps and that I'm a great player. I'm giving into that the most of my time.
WebSite https://petasv.wixsite.com/petasvideos
Youtube : https://www.youtube.com/PetasVideosTV
GameRanger ID 5603072
DISCORD ID : PetasVideosTV#9499
User avatar
TommyCD1
Moderator
Moderator
Posts: 1143
Joined: Tue Jun 04, 2013 8:55 am
Location: East Coast
Contact:
United States of America

Re: game.cfg eror

Post by TommyCD1 »

Since these tan players aren't actual players, they aren't going to do anything.

The easiest solution to this problem is to change their personality.

Find this line:

Personality("None");

And change it to this:

Personality("default");

Also, while we're already editing the game.cfg, you should remove the lines

PermanentRadar(0);

Because these lines don't do anything. Also, the RGB value color for tan is.

252 194 107
I may not make the best maps, or be the best player, but I put a lot of time, effort, and care into my stuff. That counts for something, right? No.
Image
"Can we order a pizza?"
GameRanger ID: 913974
User avatar
Petas
Map Maker
Map Maker
Posts: 563
Joined: Tue Jan 06, 2015 1:34 pm
Location: Czech Republic
Contact:
Czech Republic

Re: game.cfg eror

Post by Petas »

TommyCD1 wrote:Since these tan players aren't actual players, they aren't going to do anything.

The easiest solution to this problem is to change their personality.

Find this line:

Personality("None");

And change it to this:

Personality("default");

Also, while we're already editing the game.cfg, you should remove the lines

PermanentRadar(0);

Because these lines don't do anything. Also, the RGB value color for tan is.

252 194 107
well, how can I make it so it was a game against a tan?
I'm not saying I have good maps and that I'm a great player. I'm giving into that the most of my time.
WebSite https://petasv.wixsite.com/petasvideos
Youtube : https://www.youtube.com/PetasVideosTV
GameRanger ID 5603072
DISCORD ID : PetasVideosTV#9499
User avatar
TommyCD1
Moderator
Moderator
Posts: 1143
Joined: Tue Jun 04, 2013 8:55 am
Location: East Coast
Contact:
United States of America

Re: game.cfg eror

Post by TommyCD1 »

Code: Select all

DefineTeams()
{
  CreateTeam("Team-Tan 2", 3)
  {
    Color(252, 194, 107);

    Relations()
    {
      With("Team-Tan 2", "Ally");
      With("Team-Tan 1", "Ally");
      With("Team 2", "Enemy");
      With("Team 1", "Enemy");
    }

    DefaultClient(0);
    AvailablePlay(0);
    HasStats(0);
    RequireAI(1);
    Side("army");
    SideFixed(0);

    Objectives()
    {
      ReaperId(32);
      ReaperId(33);
      ReaperId(34);
    }

    StartRegion(28);
    StartPoint(0.119093, 0.125296);
    StartYaw(0.000000);
    Personality("default");
    PainCurrentCluster(0);
    UniqueScriptId(0);

    Storage()
    {
      Add("Plastic", 2000);
      Add("Electricity", 800);
    }
  }

  CreateTeam("Team-Tan 1", 2)
  {
    Color(252, 194, 107);

    Relations()
    {
      With("Team-Tan 2", "Ally");
      With("Team-Tan 1", "Ally");
      With("Team 2", "Enemy");
      With("Team 1", "Enemy");
    }

    DefaultClient(0);
    AvailablePlay(0);
    HasStats(0);
    RequireAI(1);
    Side("army");
    SideFixed(0);

    Objectives()
    {
      ReaperId(25);
      ReaperId(26);
      ReaperId(27);
    }

    StartRegion(24);
    StartPoint(0.869056, 0.125621);
    StartYaw(0.000000);
    Personality("default");
    PainCurrentCluster(0);
    UniqueScriptId(0);

    Storage()
    {
      Add("Plastic", 2000);
      Add("Electricity", 800);
    }
  }

  CreateTeam("Team 2", 1)
  {
    Color(0, 0, 0);

    Relations()
    {
      With("Team-Tan 2", "Enemy");
      With("Team-Tan 1", "Enemy");
      With("Team 2", "Ally");
      With("Team 1", "Neutral");
    }

    DefaultClient(0);
    AvailablePlay(1);
    HasStats(1);
    RequireAI(0);
    Side("army");
    SideFixed(0);

    Objectives()
    {
      ReaperId(21);
      ReaperId(22);
      ReaperId(23);
    }

    StartRegion(20);
    StartPoint(0.130066, 0.853320);
    StartYaw(0.000000);
    Personality("None");
    PainCurrentCluster(0);
    UniqueScriptId(0);

    Storage()
    {
      Add("Plastic", 2000);
      Add("Electricity", 800);
    }
  }

  CreateTeam("Team 1", 0)
  {
    Color(0, 0, 0);

    Relations()
    {
      With("Team-Tan 2", "Enemy");
      With("Team-Tan 1", "Enemy");
      With("Team 2", "Neutral");
      With("Team 1", "Ally");
    }

    DefaultClient(1);
    AvailablePlay(1);
    HasStats(1);
    RequireAI(0);
    Side("army");
    SideFixed(0);

    Objectives()
    {
      ReaperId(17);
      ReaperId(18);
      ReaperId(19);
    }

    StartRegion(16);
    StartPoint(0.878876, 0.815757);
    StartYaw(0.000000);
    Personality("None");
    PainCurrentCluster(0);
    UniqueScriptId(0);

    Storage()
    {
      Add("Plastic", 2000);
      Add("Electricity", 800);
    }
  }
}
I may not make the best maps, or be the best player, but I put a lot of time, effort, and care into my stuff. That counts for something, right? No.
Image
"Can we order a pizza?"
GameRanger ID: 913974
User avatar
Petas
Map Maker
Map Maker
Posts: 563
Joined: Tue Jan 06, 2015 1:34 pm
Location: Czech Republic
Contact:
Czech Republic

Re: game.cfg eror

Post by Petas »

Peta wrote:
TommyCD1 wrote:Since these tan players aren't actual players, they aren't going to do anything.

The easiest solution to this problem is to change their personality.

Find this line:

Personality("None");

And change it to this:

Personality("default");

Also, while we're already editing the game.cfg, you should remove the lines

PermanentRadar(0);

Because these lines don't do anything. Also, the RGB value color for tan is.

252 194 107
well, how can I make it so it was a game against a tan?
thanks :SWEET:
I'm not saying I have good maps and that I'm a great player. I'm giving into that the most of my time.
WebSite https://petasv.wixsite.com/petasvideos
Youtube : https://www.youtube.com/PetasVideosTV
GameRanger ID 5603072
DISCORD ID : PetasVideosTV#9499
Post Reply

Who is online

Users browsing this forum: No registered users and 1 guest