Atlas Shop, Currency & Kits

Welcome!

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

SignUp Now!
So the plugin doesnt create a DB for me. I set it up just like its ark brother but no DB is beeing created...
I am stuck at -97626676 Points...
 
You're using SQL I would hope? Create the database you want it to use, with the proper permissions, and reflect that info in the config
 
No, I am using MySQL like I do with all plugins that support it.
I host my own Server. The crendtials are correct. its set to mysql = true and the db exists and the dbuser got the needed permissions.


The issue is: no db gets created, when i created the needed db myself (copied from ark and named to atlasshopplayers no entry gets created.
 
Items aren't spawning but console command works, a snippet of my Kit JSON section is attached.

cheat giveitem "Blueprint'/Game/Mods/1632631187/Items/Weapon/PrimalItem_WeaponMetalHatchet_AP.PrimalItem_WeaponMetalHatchet_AP'" 1 0 0 will give the item. Which matches the blueprint path in the JSON.
 
Looking into it more - I'm able to redeem the kit (if free), but even with the points it will not reward items if paid. Thanks for any guidance you maybe able to offer!
 
so when you joint link the shop to all the maps, do you do the same for the permissions files also ? Also, does this file for the cluster have to be in any specific dir or just anywhere on the server and just point it to it?

Thanks, Love your mods dude i'll be making a donation toward your cause soon, much respect for people that don't outright as for a fee over ppl that charge for a plugin to make a Mod work. Would you consider the idea of a chat bridge to discord ? just asking cuz i like your work on ark and just now diving into Atlas.

Thanks
 
After patch, the shop is logging players into the database under a new ID. its not the STEAM64 ID any longer. We need an update pls!!
 
After patch, the shop is logging players into the database under a new ID. its not the STEAM64 ID any longer. We need an update pls!!
I believe we have the same issue. I don't know much at all about this thing, but basically all our players shop points are set back to 0 after the latest patch.
 
I believe we have the same issue. I don't know much at all about this thing, but basically all our players shop points are set back to 0 after the latest patch.
Can confirm we also have this issue.
 
The new xbox crossplay integration is most likely the cause. The main API will need to locate where the steam ID is now.
 
Hi, the shop is not calculating points correctly, can we please get a hot fix soon.
 
Hi, the shop is not calculating points correctly, can we please get a hot fix soon.

My players are getting random amounts of points completely randomly. It says it does the usual amount of points (5 per 30 mins) but it's also adding random amounts at completely random intervals, I have found nothing that appears to be the cause or any way to reproduce it, simply just being in game your total points will rise over time. It does seem to be in 5 point increments, it's never like 4 or 7 it's always 5,10,15,20,25 etc, hope this helps in figuring out the issue.
 
im having the same problem as you @SoCalSynner but i did use ur store as a base so i guess it makes sense, all the tames in the store work but none of the materials, and the bp paths ive added on top of the one he created dont work either, should i change my bp paths to cheat paths for the materials? if someone can help that would be awesome

edit -- the only thing i can think of off the top of my head is either no overall grouping like "Items":[ ] or because there all set to "Type":"item",
 
Last edited:
Hey Guys,

I need your help :) I try to run this Plugin on our server but i'm a bit confused :D

I just need to Install an empty MySQL Database on my server. Create a user for the Plugin and the Plugin creates tables etc. on that Database or is there more to do ^^

Is there any guide “How to install Atlas Shop, Currency & Kits”

Thx 4 your Support, you won't regret it
 
Hey Guys,

I need your help :) I try to run this Plugin on our server but i'm a bit confused :D

I just need to Install an empty MySQL Database on my server. Create a user for the Plugin and the Plugin creates tables etc. on that Database or is there more to do ^^

Is there any guide “How to install Atlas Shop, Currency & Kits”

Thx 4 your Support, you won't regret it
That should be it :)


1. Setup A Mysql Database (Windows or Linux doesn't rly matter)
2. Create a database called "atlasshop" (Or something of your likings)
3. Create a User called "atlasshopuser" (Or something of your likings) Don't forget to set a password!
4. Grant All Privileges to that user and for that database you just created
5. FLUSH Privileges to apply the new user and grants
6. Make the config with your user/database settings
7. Startup the server and you should be done :)
 
That should be it :)


1. Setup A Mysql Database (Windows or Linux doesn't rly matter)
2. Create a database called "atlasshop" (Or something of your likings)
3. Create a User called "atlasshopuser" (Or something of your likings) Don't forget to set a password!
4. Grant All Privileges to that user and for that database you just created
5. FLUSH Privileges to apply the new user and grants
6. Make the config with your user/database settings
7. Startup the server and you should be done :)

Thank you :) i'll try it :)

Didn't think, that it would be that Easy xD
 
Hello Again :)

i keep getting that Error 1114.

View attachment 2148

Just installed MySQL Created a Database and created a User and Grant ALL PRIVILEGES with the following Statements

Create Database shop;
use shop;
CREATE USER 'shopuser'@'localhost' IDENTIFIED BY 'test';
GRANT ALL PRIVILEGES ON shop . * TO 'shopuser'@'localhost';

After that i opened the config.json and Changed the Vaulues.

{
"Mysql":{
"UseMysql":true,
"MysqlHost":"localhost",
"MysqlUser":"shopuser",
"MysqlPass":"test",
"MysqlDB":"shop"
},

Is there something i forgot ?

thx in Advance
 
Okay i guess i fixed it, idk ^^. It seems there is a Problem with the Authentification Type.
Hello Again :)

i keep getting that Error 1114.

View attachment 2148

Just installed MySQL Created a Database and created a User and Grant ALL PRIVILEGES with the following Statements

Create Database shop;
use shop;
CREATE USER 'shopuser'@'localhost' IDENTIFIED BY 'test';
GRANT ALL PRIVILEGES ON shop . * TO 'shopuser'@'localhost';

After that i opened the config.json and Changed the Vaulues.

{
"Mysql":{
"UseMysql":true,
"MysqlHost":"localhost",
"MysqlUser":"shopuser",
"MysqlPass":"test",
"MysqlDB":"shop"
},

Is there something i forgot ?

thx in Advance



Okay i guess i fixed it, idk ^^. It seems there is a Problem with the Authentification Type,
if i Create an user by "CREATE USER '%USERNAME%'@'localhost' IDENTIFIED BY '%PASSWORD%'; " the Standard Authentification Type ist set to "caching_sha2_password"

I just created an user via MySQL Workbench Adminstration tool with Authentification Type = Standard an the ERROR 1114 Stopped. Now i get:


10/14/19 23:13 [API][info] -----------------------------------------------
10/14/19 23:13 [API][info] YAPI V1.5
10/14/19 23:13 [API][info] Loading...

10/14/19 23:13 [API][info] Dumping structures..
10/14/19 23:13 [API][info] Dumping functions..
10/14/19 23:13 [API][info] Dumping globals..
10/14/19 23:13 [API][info] Successfully read information from PDB

10/14/19 23:13 [API][info] Initialized hooks

10/14/19 23:13 [API][info] API was successfully loaded
10/14/19 23:13 [API][info] -----------------------------------------------

Setting breakpad minidump AppID = 834910
[2019.10.14-21.13.57:351][ 0]LogMemory: Platform Memory Stats for WindowsServer
[2019.10.14-21.13.57:351][ 0]LogMemory: Process Physical Memory: 77.19 MB used, 479.04 MB peak
[2019.10.14-21.13.57:351][ 0]LogMemory: Process Virtual Memory: 75.76 MB used, 489.97 MB peak
[2019.10.14-21.13.57:351][ 0]LogMemory: Physical Memory: 4779.95 MB used, 65444.62 MB total
[2019.10.14-21.13.57:351][ 0]LogMemory: Virtual Memory: 578.56 MB used, 134217728.00 MB total
[2019.10.14-21.13.57:564][ 0]ATLAS Version: 400.24 (Rev. Unknown)
[2019.10.14-21.13.57:564][ 0]PID: 4460
10/14/19 23:13 [API][info] UGameEngine::Init was called
10/14/19 23:13 [API][info] Loading plugins..

10/14/19 23:13 [API][info] Loaded plugin Atlas Shop V1.0 (Shop, Currency & Kits)

10/14/19 23:13 [API][error] Plugin Permissions is missing! AtlasShop might not work correctly
10/14/19 23:13 [API][info] Loaded all plugins

i Saw in the "Plugininfo.json" a part to
"Dependencies":[
"Permissions"

do i need to configure here something? :D
 
Okay i guess i fixed it, idk ^^. It seems there is a Problem with the Authentification Type.




Okay i guess i fixed it, idk ^^. It seems there is a Problem with the Authentification Type,
if i Create an user by "CREATE USER '%USERNAME%'@'localhost' IDENTIFIED BY '%PASSWORD%'; " the Standard Authentification Type ist set to "caching_sha2_password"

I just created an user via MySQL Workbench Adminstration tool with Authentification Type = Standard an the ERROR 1114 Stopped. Now i get:


10/14/19 23:13 [API][info] -----------------------------------------------
10/14/19 23:13 [API][info] YAPI V1.5
10/14/19 23:13 [API][info] Loading...

10/14/19 23:13 [API][info] Dumping structures..
10/14/19 23:13 [API][info] Dumping functions..
10/14/19 23:13 [API][info] Dumping globals..
10/14/19 23:13 [API][info] Successfully read information from PDB

10/14/19 23:13 [API][info] Initialized hooks

10/14/19 23:13 [API][info] API was successfully loaded
10/14/19 23:13 [API][info] -----------------------------------------------

Setting breakpad minidump AppID = 834910
[2019.10.14-21.13.57:351][ 0]LogMemory: Platform Memory Stats for WindowsServer
[2019.10.14-21.13.57:351][ 0]LogMemory: Process Physical Memory: 77.19 MB used, 479.04 MB peak
[2019.10.14-21.13.57:351][ 0]LogMemory: Process Virtual Memory: 75.76 MB used, 489.97 MB peak
[2019.10.14-21.13.57:351][ 0]LogMemory: Physical Memory: 4779.95 MB used, 65444.62 MB total
[2019.10.14-21.13.57:351][ 0]LogMemory: Virtual Memory: 578.56 MB used, 134217728.00 MB total
[2019.10.14-21.13.57:564][ 0]ATLAS Version: 400.24 (Rev. Unknown)
[2019.10.14-21.13.57:564][ 0]PID: 4460
10/14/19 23:13 [API][info] UGameEngine::Init was called
10/14/19 23:13 [API][info] Loading plugins..


10/14/19 23:13 [API][info] Loaded plugin Atlas Shop V1.0 (Shop, Currency & Kits)
10/14/19 23:13 [API][error] Plugin Permissions is missing! AtlasShop might not work correctly
10/14/19 23:13 [API][info] Loaded all plugins

i Saw in the "Plugininfo.json" a part to
"Dependencies":[
"Permissions"

do i need to configure here something? :D
You need download this plugin as well: https://arkserverapi.com/resources/atlas-permissions.83/
I suggest you use the Mysql feature here as well, but with a separate database so don't use the same as AtlasShop :)
 
Tempest Dedicated Servers
Monetize your ARK server
Rogue Vikings Discord Server - Rogue Vikings Gaming Servers - Minecraft Prison Servers - Minecraft Creative Servers
Tebex
Back
Top