Skip to content
Merged

S6 #5

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
0ff365a
Move member features to members section and update access info
MuigetsuVB Sep 7, 2025
a567f82
Update index.mdx
MuigetsuVB Sep 7, 2025
6d1e9cd
Revise map and movement documentation
MuigetsuVB Sep 10, 2025
f696dfe
Update skill XP tables and expand combat documentation
MuigetsuVB Sep 11, 2025
1161e2f
Expand member feature docs with API usage and details
MuigetsuVB Sep 11, 2025
55f3180
Clean up formatting in event tokens documentation
MuigetsuVB Sep 11, 2025
998724f
Update docs for Season 6 and new features
MuigetsuVB Sep 13, 2025
96fa8d0
Update test_server.mdx
MuigetsuVB Sep 13, 2025
2df4d82
Update updates.mdx
MuigetsuVB Sep 13, 2025
0a6bb82
Update test_server.mdx
MuigetsuVB Sep 13, 2025
39236a4
Update test server API links and minor formatting
MuigetsuVB Sep 13, 2025
fda41a7
Update updates.mdx
MuigetsuVB Sep 13, 2025
a4ecd61
Update test_server.mdx
MuigetsuVB Sep 13, 2025
18f13f8
Update updates.mdx
MuigetsuVB Sep 13, 2025
f8182be
Fix whitespace and formatting in documentation
MuigetsuVB Sep 13, 2025
f0fa945
Update maps and movement documentation
MuigetsuVB Sep 15, 2025
2ccc6ec
Refine API endpoint documentation for maps and movement
MuigetsuVB Sep 15, 2025
335a516
Revise API links and formatting in maps documentation
MuigetsuVB Sep 15, 2025
5fbde2e
Revise movement and transition descriptions
MuigetsuVB Sep 15, 2025
b8e780a
Update websockets.mdx
MuigetsuVB Sep 28, 2025
a5b4b65
Update websockets.mdx
MuigetsuVB Sep 28, 2025
8332015
Update updates.mdx
MuigetsuVB Sep 28, 2025
f7dca89
Update roadmap with revised launch plans
MuigetsuVB Oct 1, 2025
783d8b2
Update websockets.mdx
MuigetsuVB Oct 1, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pages/_meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"concepts": "Game concepts",
"api_guide": "API Guide",
"resources": "Resources",
"others": "Others",
"members": "Members",
"database": {
"title": "Encyclopedia ↗",
"type": "page",
Expand Down
2 changes: 1 addition & 1 deletion pages/api_guide/authorization.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ The API requires that you authenticate with a valid JWT bearer token in order to
You can create an account and get your token directly on [our website](https://artifactsmmo.com/account).

Once you have a JWT bearer token, you can use it to authenticate with the API by including it in the **Authorization** header of every request. The following is an example of authenticating with the API:

```http filename="cURL" copy
curl --location --request GET 'https://api.artifactsmmo.com/my/characters?page=1&size=50' \
--header 'Accept: application/json' \
Expand Down
2 changes: 1 addition & 1 deletion pages/api_guide/openapi_spec.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

You can download the OpenAPI specifications here:

[Download OpenAPI Spec](https://api.artifactsmmo.com/openapi.json)
[Download OpenAPI Spec](https://api.artifactsmmo.com/openapi.json)
2 changes: 1 addition & 1 deletion pages/api_guide/rate_limits.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
| Token | 50 requests / hour | IP |
| Data | 32 requests / second; 200 requests / minute; 7200 / hour | IP |
| Actions | 7requests / 2second; 200 requests / minute; 7200 / hour | IP |

16 changes: 11 additions & 5 deletions pages/api_guide/response_codes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ code_same_password: int = 458
code_current_password_invalid: int = 459
code_account_not_member: int = 451
code_account_skin_not_owned: int = 550

# Character Error Codes
code_character_not_enough_hp: int = 483
code_character_maximum_utilites_equiped: int = 484
code_character_item_already_equiped: int = 485
code_character_maximum_utilities_equipped: int = 484
code_character_item_already_equipped: int = 485
code_character_locked: int = 486
code_character_not_this_task: int = 474
code_character_too_many_items_task: int = 475
Expand All @@ -62,7 +62,6 @@ code_character_not_found: int = 498
code_character_in_cooldown: int = 499

# Item Error Codes
code_item_insufficient_quantity: int = 471
code_item_invalid_equipment: int = 472
code_item_recycling_invalid_item = 473
code_item_invalid_consumable: int = 476
Expand All @@ -86,10 +85,17 @@ code_bank_transaction_in_progress: int = 461
code_bank_full: int = 462

# Maps Error Codes
code_map_no_path_found: int = 595
code_map_blocked: int = 596
code_map_not_found: int = 597
code_map_content_not_found: int = 598


# NPC Error Codes
code_npc_not_for_sale: int = 441
code_npc_not_for_buy: int = 442
code_npc_not_for_buy: int = 442

# Event Error Codes
code_event_insufficient_tokens: int = 563
code_event_not_found: int = 564
```
2 changes: 1 addition & 1 deletion pages/concepts/achievements.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Achievements are objectives to be met during the season by all your characters.
Progress is tracked at the account level, so all your characters contribute together to unlock achievements.

Achievement points and the number of achievements required to complete a season may change. You can always check the current requirements using the [server status endpoint](https://api.artifactsmmo.com/docs/#/operations/get_server_details__get)

## Achievement Types

- `combat_kill` – Defeat monsters
Expand Down
3 changes: 2 additions & 1 deletion pages/concepts/actions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
To execute an action with your character, you need to send an API request.

Here's the list of actions currently available:

* [Move](https://api.artifactsmmo.com/docs/#/operations/action_move_my__name__action_move_post)
* [Fight](https://api.artifactsmmo.com/docs/#/operations/action_fight_my__name__action_fight_post)
* [Transition](https://api.artifactsmmo.com/docs/#/operations/action_transition_my__name__action_transition_post)
* [Rest](https://api.artifactsmmo.com/docs/#/operations/action_rest_my__name__action_rest_post)
* [Gathering](https://api.artifactsmmo.com/docs/#/operations/action_gathering_my__name__action_gathering_post)
* [Crafting](https://api.artifactsmmo.com/docs/#/operations/action_crafting_my__name__action_crafting_post)
Expand Down
2 changes: 1 addition & 1 deletion pages/concepts/events.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Callout } from 'nextra/components'

# Events
Events let exclusive monsters, resources and NPCs appear randomly in the world. When an event appears, you have a limited amount of time to get to the map to kill monsters, gather resources or buy/sell items to an npc.

| Name | Content |
| ---------------- | ---------------------------------- |
| Bandit Camp |[Bandit Lizard (Monster)](https://artifactsmmo.com/encyclopedia/monsters/bandit_lizard) |
Expand Down
2 changes: 1 addition & 1 deletion pages/concepts/give.mdx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## Give Items & Gold

Your character can give items or gold to other characters on your account, as long as both characters are on the same map. This feature enables you to specialize some characters as dedicated transporters or traders, making it easier to manage resources within your team.

You can use this to optimize logistics or simply transfer gear, resources, or currency to the character who needs them most.

- Both the sender and receiver must be **your own characters**, and they must be located **on the same map**.
Expand Down
2 changes: 1 addition & 1 deletion pages/concepts/grand_exchange.mdx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Callout } from 'nextra/components'

# Grand Exchange

The Grande Exchange lets you buy and sell items from other players.
Please note there is a 3% listing tax, charged at the time of posting, on the total price.

Expand Down
2 changes: 1 addition & 1 deletion pages/concepts/inventory_and_bank.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Each character has 20 slots in their inventory, which can hold a maximum of 100 items. So you can have 20 different items, but a maximum of 100 items in total. At each level, the maximum total items increases by 2.

You can view the contents of your inventory with [this request.](https://api.artifactsmmo.com/docs/#/operations/get_my_characters_my_characters_get)

```http filename="JSON" copy
....
"inventory": [
Expand Down
Loading