ASA Arkshop

ASA Arkshop 1.10

No permission to download
hi, i've set command for notes like this, but dont work

"Items": [
{
"Command": "GiveAllExplorerNotes",
"DisplayAs": "Give All Notes",
"ExecuteAsAdmin": true
}
]
 
Since today i have problems with the /trade 'playername' amount command.
Did anything happen to the plugin? Seems like i can /trade with eos ID but playername is more user friendly.
 
Hello !
I did this :

"Notes": {
"Type": "command",
"Description": "Notes Exploreurs",
"Price": 5000,
"Items": [
{
"Command": "cheat GiveAllExplorerNotes {eos_id}",
"DisplayAs": "Débloquer les Notes Exploreurs"
}
]
}

it only works for admins, how do I make it work for everyone?
 
Hello !
I did this :

"Notes": {
"Type": "command",
"Description": "Notes Exploreurs",
"Price": 5000,
"Items": [
{
"Command": "cheat GiveAllExplorerNotes {eos_id}",
"DisplayAs": "Débloquer les Notes Exploreurs"
}
]
}

it only works for admins, how do I make it work for everyone?
Remove the cheat from the command, and try adding the option below DisplayAs. "ExecuteAsAdmin": true
 
Probably wrong JSON syntax.
"Notes": {
"Type": "command",
"Description": "Notes Exploreurs",
"Price": 5000,
"Items": [
{
"Command": "GiveAllExplorerNotes {eos_id}",
"DisplayAs": "Débloquer les Notes Exploreurs"
"ExecuteAsAdmin": true
}
]
}

Failure to reload the plugin :(
any idea what i'm doing wrong in the syntax?
 
"Notes": {
"Type": "command",
"Description": "Notes Exploreurs",
"Price": 5000,
"Items": [
{
"Command": "GiveAllExplorerNotes {eos_id}",
"DisplayAs": "Débloquer les Notes Exploreurs"
"ExecuteAsAdmin": true
}
]
}

Failure to reload the plugin :(
any idea what i'm doing wrong in the syntax?
You are missing a comma after the display as section
 
omg I'm ashamed lol, I corrected it, but it still doesn't work I don't understand.
try with these 2 commands :

JSON:
                {
                    "Command": "GiveAllExplorerNotes",
                    "DisplayAs": "Donne toutes les notes"
                },
                {
                    "Command": "UnlockAllExplorerNotes",
                    "DisplayAs": "Débloque toutes les notes",
                    "ExecuteAsAdmin": true
                }
 
Back
Top