[Resource] Structures Limit

Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!
This prefix applies to all resources.
Hi, someone knows who can i make a different between donators and normal users?
Normal Player 5000
Prime 7500
Admin unlimited
 
Hi, someone knows who can i make a different between donators and normal users?
Normal Player 5000
Prime 7500
Admin unlimited
It's currently not supported.
 
Dear sr.
why this blueprint paths not working ?
the path it's correct., and the spawn code work with that path,, but don't work with structures limit.., and i don't know why...

thanks

Code:
"Structures":{ 
    "Blueprint'/Game/Mods/CapitalismPlayerTrader/AdvancedPlayerTable/AltActor/PrimalItemStructure_AdvancedPlayerTerminal.PrimalItemStructure_AdvancedPlayerTerminal'":
    {
      "Name":"AvancedPlayerTerminal",
      "Count":3
    }
    ,
    "Blueprint'/Game/Mods/CapitalismPlayerTrader/DinoTable/AltActor/PrimalItemStructure_DinoTerminal.PrimalItemStructure_DinoTerminal'":
    {
      "Name":"DinoTerminal",
      "Count":2
    }
    ,
    "Blueprint'/Game/Mods/CapitalismPlayerTrader/PlayerTable/AltActor/PrimalItemStructure_PlayerTerminal.PrimalItemStructure_PlayerTerminal'":
    {
    
      "Name":"PlayerTerminal",
      "Count":2   
    }
    
  },
 
Dear sr.
why this blueprint paths not working ?
the path it's correct., and the spawn code work with that path,, but don't work with structures limit.., and i don't know why...

thanks

Code:
"Structures":{
    "Blueprint'/Game/Mods/CapitalismPlayerTrader/AdvancedPlayerTable/AltActor/PrimalItemStructure_AdvancedPlayerTerminal.PrimalItemStructure_AdvancedPlayerTerminal'":
    {
      "Name":"AvancedPlayerTerminal",
      "Count":3
    }
    ,
    "Blueprint'/Game/Mods/CapitalismPlayerTrader/DinoTable/AltActor/PrimalItemStructure_DinoTerminal.PrimalItemStructure_DinoTerminal'":
    {
      "Name":"DinoTerminal",
      "Count":2
    }
    ,
    "Blueprint'/Game/Mods/CapitalismPlayerTrader/PlayerTable/AltActor/PrimalItemStructure_PlayerTerminal.PrimalItemStructure_PlayerTerminal'":
    {
   
      "Name":"PlayerTerminal",
      "Count":2  
    }
   
  },
Use GetBP and look at them, use that path instead.
 
Doesn't it show us the limit of structures as it should be set? The chat command is not responding
/ShowLimits
 
Doesn't it show us the limit of structures as it should be set? The chat command is not responding
/ShowLimits
Chat command Is working, do you have any plugins that interfere with the chat or commands?
 
"MaxAmount": 8000, // Global max amount of structures per tribe or player

does max amount include turret?
 
Since it doesn't have a DB connection this doesn't use the API-Permissions groups. So when you say that the admin tribe needs to be 'Admin' group, you mean the name in Ark of the admin tribe needs to literally be "Admin" for it to be ignored? If this is incorrect then please correct me as I'm unsure of how to make sure that the community admin tribe isn't counted.
Thanks in advance
 
Since it doesn't have a DB connection this doesn't use the API-Permissions groups. So when you say that the admin tribe needs to be 'Admin' group, you mean the name in Ark of the admin tribe needs to literally be "Admin" for it to be ignored? If this is incorrect then please correct me as I'm unsure of how to make sure that the community admin tribe isn't counted.
Thanks in advance
It doesn't need to have a database connection for it to talk with the permission plugin. If you have set the option "IgnoreAdmins" to true It will send the steamID of the one that tries to place a structure to the Permission plugin and then check if the steamID exist and have the group "Admins" in the Permission database.
 
It doesn't need to have a database connection for it to talk with the permission plugin. If you have set the option "IgnoreAdmins" to true It will send the steamID of the one that tries to place a structure to the Permission plugin and then check if the steamID exist and have the group "Admins" in the Permission database.
Does it make any difference if Permissions is using mysql?
I'm having a whale of a time getting this to exempt the Admins group.

As a test I wiped all DB's and had the API's recreate all their tables.
I log in get the Default group.
Create the Admins group 'cheat Permissions.AddGroup Admins
Add myself to the Admins group 'cheat Permissions.add 76561197996445242 Admins'
Do /groups and it shows me in both Default, Admins
Place a tile and it won't let me.

{
"General": {
"IgnoreAdmin": true,
"MaxAmount": 301,
"NotificationDisplayTime": 4,
"NotificationScale": 1.3
},
"Messages": {
"Sender": "Structure Limits:",
"InvitingMergeFail": "Can't merge with this tribe, the tribe has too many structures!",
"InvitedMergeFail": "The tribe you are trying to merge has too many structures combined with yours!",
"InvitingTribeFail": "The player you are trying to invite has too many structures combined with yours!",
"InvitedPlayerFail": "The tribe you are trying to join have has too structures combined with yours!",
"ReachLimit": "You have reached your limit of that structure or the global structure limit!",
"ShowLimitsCmd": "/ShowLimits",
"ShowLimitMsg": "{}: {}/{}\n",
"TotalLimitMsg": "Total Structures: {}/{}",
"ShowLimitsType": "Notification",
"NotificationColor": {
"Red": 1,
"Green": 0,
"Blue": 0.5
},
"ShowLimitsDisplayTime": 10,
"ShowLimitsScale": 1.5
}
}
 
Newest Permissions API doesn't seem to automatically have the Admins group, so I created it (see above).
It is Admins only by name, I had to give it 'cheat Permissions.Grant Admins *'
Only after that did the placement exemption work.
 
Newest Permissions API doesn't seem to automatically have the Admins group, so I created it (see above).
It is Admins only by name, I had to give it 'cheat Permissions.Grant Admins *'
Only after that did the placement exemption work.
Weird, I don't have that issue.
As soon as I login as admin with the password it adds my steamid as "Admins", Maybe there is a bug in the Permission plugin.
 
Back
Top