Welcome to The Forum

Register now to gain access to all of our features. Once registered and logged in, you will be able to create topics, post replies and more


ProfessorOrin

Members
  • Posts

    12
  • Joined

  • Last visited

  • Days Won

    2

Reputation Activity

  1. Like
    ProfessorOrin got a reaction from Kjarstin in Helpful Scripts and Commands   
    Ahoy and welcome to the Atlas community. You will need to use an FTP program like Filezilla. Filezilla is free to download and use.
     
    If you have never used an FTP program before youtube is full of videos on how to use it. The ini files are on your server. 
     
    Once you get up and going post your questions the community is really helpful. 
  2. Like
    ProfessorOrin got a reaction from BartOates in Helpful Scripts and Commands   
    Ahoy Atlas Community! Professor Orin here.
     
    The following are some scripts and commands I use on my server that I find very helpful. As I find more I'll edit this post and add them in. If you have any helpful Scripts and Commands please post them below for our Community.
     
    Remember to STOP your Server Before adding / editing any files.
     
    Path to the GameUserSettings.ini file 
     
    ShooterGame/Saved/Config/WindowsServer/GameUserSettings.ini
     
    Path to the Game.ini file
     
    ShooterGame/Saved/Config/WindowsServer/Game.ini
     
    Atlas uses the Ark engine so a good amount of Ark Server Settings will work. They will just need to be Tested and Confirmed.
     
    You can upload a Custom ServerGrid.json file via FTP. You can use the Atlas Grid Editor to create this file.
     
    =========================
     
    Remove Level cap on Freeport / Home servers and add in a stat multiplier. ( Tested and Confirmed )
     
    This goes into the Game.ini file Not the GameUserSettings.ini file
     
    Change the 55 to what ever you want your max server level to be. And change the 3 to what ever you want your stat multiplier to be.
     
    [/script/ShooterGame.ShooterGameMode]
    PlayerDefaultNoDiscoveriesMaxLevelUps=55
    bClampHomeServerXP=True
    ClampHomeServerXPLevel=55
    PerLevelStatsMultiplier_Player[0]=3  //Health
    PerLevelStatsMultiplier_Player[1]=3  //Stamina
    PerLevelStatsMultiplier_Player[7]=3  //Weight
    PerLevelStatsMultiplier_Player[10]=3 //Fortitude
    PerLevelStatsMultiplier_Player[11]=3 //Intelligence
     
    =========================
     
    Turning off Claim Flags and Setting Decay Rate. ( Tested and Confirmed )   Turning off Claim Flags will turn your Server Lawless and Structures will decay. This script will turn off claim flags and give you a decay rate multiplier. Change the 0.0 to what ever you want the decay rate to be for structures. 0.0 will be no decay.   This goes into the Game.ini file Not the GameUserSettings.ini file   [/script/ShooterGame.ShooterGameMode]
    bDontUseClaimFlags=True
    NoClaimFlagDecayPeriodMultiplier=0.0  
    =========================
     
    Add Message of the Day ( Tested and Confirmed )
     
    This goes into the GameUserSettings.ini file be sure to put it at the bottom of the file
     
    [MessageOfTheDay]
    Message=Your Message Here   ========================   To Change XP Multiplier, TamingSpeed, HarvestingAmount and going from PvP to PvE. ( Credit to Ar-Kane )   Go into the GameUserSettings.ini file. Once you open it you will see lists of scripts. Scroll down until you find [serverSettings]   It will look like this    [serverSettings]
    ShowMapPlayerLocation=True
    AllowThirdPersonPlayer=True
    PvPStructureDecay=False
    ServerCrosshair=True   At the end of the list you will add    ServerPve=True XPMultiplier=1 TamingSpeedMultiplier=1.00000 HarvestAmountMultiplier=1.00000   Change the 1 to what you want the amount to be since 1 is default. Make sure to put the new settings at the end of the list but before you see this [sessionSettings].   The following of the above settings I have tested and confirmed. ( server pve, Taming Speed, Haevest Amont )   =========================   Adding more skill points per level. ( Credit to Ar-Kane )( Tested and Confirmed )   This goes into the Game.ini file Not the GameUserSettings.ini file   You will need to add one line per character level. So if your server max level is 100 you will need to add 100 lines.   Change the 10 to what ever additional skill points you want to add per level.   [/script/ShooterGame.ShooterGameMode] OverridePlayerLevelEngramPoints=10 OverridePlayerLevelEngramPoints=10 OverridePlayerLevelEngramPoints=10 OverridePlayerLevelEngramPoints=10  
    =========================
     
    Where to find the info needed so your FTP program can access your server.
     
    Log into your servers control panel. To the right of the big Atlas icon you will see three columns.
     
    Server Details   FTP Details   RCON Details you will want to use the info under the FTP Details. Example below
     
     FTP Details
    IP/Host: 000.000.000.000
    ServerGrid.json
    Port: 00
    User: xxx
    Pass: xxx
        =========================   Per Level Stat Multiplier for Tamed Animals. ( Not Tested Or Confirmed As of 12/31/2018 )    This goes into the Game.ini file Not the GameUserSettings.ini file   Change the 1.0 to what ever you want the stat Multiplier to be.   I have not tested this script some of the stats May Not Apply to Atlas Tamable animals.    [/script/shootergame.shootergamemode]
    PerLevelStatsMultiplier_DinoTamed[0]=1.0  //Health
    PerLevelStatsMultiplier_DinoTamed[1]=1.0  //Stamina
    PerLevelStatsMultiplier_DinoTamed[2]=1.0  //Tropidity
    PerLevelStatsMultiplier_DinoTamed[3]=1.0  //Oxygen
    PerLevelStatsMultiplier_DinoTamed[4]=1.0  //Food
    PerLevelStatsMultiplier_DinoTamed[5]=1.0  //Water
    PerLevelStatsMultiplier_DinoTamed[7]=1.0  //Weight
    PerLevelStatsMultiplier_DinoTamed[8]=1.0  //Melee
    PerLevelStatsMultiplier_DinoTamed[9]=1.0  //Speed   =========================
               
       
     

     
  3. Like
    ProfessorOrin got a reaction from Ryan Pennington in Helpful Scripts and Commands   
    Ahoy Atlas Community! Professor Orin here.
     
    The following are some scripts and commands I use on my server that I find very helpful. As I find more I'll edit this post and add them in. If you have any helpful Scripts and Commands please post them below for our Community.
     
    Remember to STOP your Server Before adding / editing any files.
     
    Path to the GameUserSettings.ini file 
     
    ShooterGame/Saved/Config/WindowsServer/GameUserSettings.ini
     
    Path to the Game.ini file
     
    ShooterGame/Saved/Config/WindowsServer/Game.ini
     
    Atlas uses the Ark engine so a good amount of Ark Server Settings will work. They will just need to be Tested and Confirmed.
     
    You can upload a Custom ServerGrid.json file via FTP. You can use the Atlas Grid Editor to create this file.
     
    =========================
     
    Remove Level cap on Freeport / Home servers and add in a stat multiplier. ( Tested and Confirmed )
     
    This goes into the Game.ini file Not the GameUserSettings.ini file
     
    Change the 55 to what ever you want your max server level to be. And change the 3 to what ever you want your stat multiplier to be.
     
    [/script/ShooterGame.ShooterGameMode]
    PlayerDefaultNoDiscoveriesMaxLevelUps=55
    bClampHomeServerXP=True
    ClampHomeServerXPLevel=55
    PerLevelStatsMultiplier_Player[0]=3  //Health
    PerLevelStatsMultiplier_Player[1]=3  //Stamina
    PerLevelStatsMultiplier_Player[7]=3  //Weight
    PerLevelStatsMultiplier_Player[10]=3 //Fortitude
    PerLevelStatsMultiplier_Player[11]=3 //Intelligence
     
    =========================
     
    Turning off Claim Flags and Setting Decay Rate. ( Tested and Confirmed )   Turning off Claim Flags will turn your Server Lawless and Structures will decay. This script will turn off claim flags and give you a decay rate multiplier. Change the 0.0 to what ever you want the decay rate to be for structures. 0.0 will be no decay.   This goes into the Game.ini file Not the GameUserSettings.ini file   [/script/ShooterGame.ShooterGameMode]
    bDontUseClaimFlags=True
    NoClaimFlagDecayPeriodMultiplier=0.0  
    =========================
     
    Add Message of the Day ( Tested and Confirmed )
     
    This goes into the GameUserSettings.ini file be sure to put it at the bottom of the file
     
    [MessageOfTheDay]
    Message=Your Message Here   ========================   To Change XP Multiplier, TamingSpeed, HarvestingAmount and going from PvP to PvE. ( Credit to Ar-Kane )   Go into the GameUserSettings.ini file. Once you open it you will see lists of scripts. Scroll down until you find [serverSettings]   It will look like this    [serverSettings]
    ShowMapPlayerLocation=True
    AllowThirdPersonPlayer=True
    PvPStructureDecay=False
    ServerCrosshair=True   At the end of the list you will add    ServerPve=True XPMultiplier=1 TamingSpeedMultiplier=1.00000 HarvestAmountMultiplier=1.00000   Change the 1 to what you want the amount to be since 1 is default. Make sure to put the new settings at the end of the list but before you see this [sessionSettings].   The following of the above settings I have tested and confirmed. ( server pve, Taming Speed, Haevest Amont )   =========================   Adding more skill points per level. ( Credit to Ar-Kane )( Tested and Confirmed )   This goes into the Game.ini file Not the GameUserSettings.ini file   You will need to add one line per character level. So if your server max level is 100 you will need to add 100 lines.   Change the 10 to what ever additional skill points you want to add per level.   [/script/ShooterGame.ShooterGameMode] OverridePlayerLevelEngramPoints=10 OverridePlayerLevelEngramPoints=10 OverridePlayerLevelEngramPoints=10 OverridePlayerLevelEngramPoints=10  
    =========================
     
    Where to find the info needed so your FTP program can access your server.
     
    Log into your servers control panel. To the right of the big Atlas icon you will see three columns.
     
    Server Details   FTP Details   RCON Details you will want to use the info under the FTP Details. Example below
     
     FTP Details
    IP/Host: 000.000.000.000
    ServerGrid.json
    Port: 00
    User: xxx
    Pass: xxx
        =========================   Per Level Stat Multiplier for Tamed Animals. ( Not Tested Or Confirmed As of 12/31/2018 )    This goes into the Game.ini file Not the GameUserSettings.ini file   Change the 1.0 to what ever you want the stat Multiplier to be.   I have not tested this script some of the stats May Not Apply to Atlas Tamable animals.    [/script/shootergame.shootergamemode]
    PerLevelStatsMultiplier_DinoTamed[0]=1.0  //Health
    PerLevelStatsMultiplier_DinoTamed[1]=1.0  //Stamina
    PerLevelStatsMultiplier_DinoTamed[2]=1.0  //Tropidity
    PerLevelStatsMultiplier_DinoTamed[3]=1.0  //Oxygen
    PerLevelStatsMultiplier_DinoTamed[4]=1.0  //Food
    PerLevelStatsMultiplier_DinoTamed[5]=1.0  //Water
    PerLevelStatsMultiplier_DinoTamed[7]=1.0  //Weight
    PerLevelStatsMultiplier_DinoTamed[8]=1.0  //Melee
    PerLevelStatsMultiplier_DinoTamed[9]=1.0  //Speed   =========================
               
       
     

     
  4. Like
    ProfessorOrin got a reaction from Ryan Pennington in Level 8 cap   
    I'm glad it worked and your up and running. Atlas uses the Ark engine so a lot of Ark commands work. But there are some new commands also due to server clustering and freeport / home servers. 
  5. Like
    ProfessorOrin got a reaction from VikingBlair in Level 8 cap   
    Valei I put the above in the game.ini file not the gameusersettings.ini file and I did not change the .json file.
     
    Path to the game.ini file if you need it. Shootergame/saved/config/windowsserver/game.ini
     
    When you open the game.ini file there will be nothing in it so just paste in the below and save.
     
    Upload it back to the server. Be sure and stop your server before you do anything. I hope this helps.
     
    Be sure and copy the script below just like this. If you don't copy the script just like this with just changing the 55 to what ever max level you want and change the 3 to what ever stat you want it will not work.
     
     
    [/script/ShooterGame.ShooterGameMode]
    PlayerDefaultNoDiscoveriesMaxLevelUps=55
    bClampHomeServerXP=True
    ClampHomeServerXPLevel=55
    PerLevelStatsMultiplier_Player[0]=3  //Health
    PerLevelStatsMultiplier_Player[1]=3  //Stamina
    PerLevelStatsMultiplier_Player[7]=3  //Weight
    PerLevelStatsMultiplier_Player[10]=3 //Fortitude
    PerLevelStatsMultiplier_Player[11]=3 //Intelligence