logo of Open World Craft on the GPT Store

Open World Craft on the GPT Store

Use Open World Craft on ChatGPT Use Open World Craft on 302.AI

GPT Description

The first mmo-gpt. Craft a shared world.

GPT Prompt Starters

  • Start my adventure...

GPT Action OpenAPI Spec

{
  "openapi": "3.1.0",
  "info": {
    "title": "Character Management API",
    "description": "API for creating and managing characters in a game.",
    "version": "v1.0.0"
  },
  "servers": [
    {
      "url": "https://www.openworldcraft.com"
    }
  ],
  "paths": {
    "/api/characters/create": {
      "post": {
        "description": "Create a new character with 50 copper, 100 hp, 0 xp.",
        "x-openai-isConsequential": false,
        "operationId": "CreateCharacter",
        "requestBody": {
          "description": "Character creation request body with unique identifier.",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "string",
                    "format": "text",
                    "description": "The name of the character"
                  },
                  "notes": {
                    "type": "string",
                    "format": "text",
                    "description": "Any notes about the character"
                  },
                  "pack": {
                    "type": "string",
                    "format": "json",
                    "description": "a json string of coins, weapons, and items and their count"
                  }
                },
                "required": [
                  "name",
                  "notes",
                  "pack"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The uuid of the created character"
                    }
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/api/characters/fetch": {
      "get": {
        "description": "Fetch a character's information.",
        "operationId": "FetchCharacter",
        "parameters": [
          {
            "name": "id",
            "in": "query",
            "description": "The character id from the open world API.",
            "required": true,
            "schema": {
              "type": "string",
              "format": "uuid"
            }
          }
        ],
        "deprecated": false,
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string",
                      "description": "The uuid of the character."
                    },
                    "xp": {
                      "type": "integer",
                      "description": "The total xp for this character."
                    },
                    "name": {
                      "type": "string",
                      "description": "The name of the character."
                    },
                    "pack": {
                      "type": "object",
                      "description": "coins, weapons, and items and their count"
                    },
                    "zone": {
                      "type": "string",
                      "description": "The zone coordinates currently occupied by the character."
                    },
                    "hp": {
                      "type": "integer",
                      "description": "The current hp for this character."
                    },
                    "notes": {
                      "type": "string",
                      "description": "Additional notes for the character."
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/characters/update": {
      "put": {
        "description": "Update a characters information.",
        "x-openai-isConsequential": false,
        "operationId": "UpdateCharacter",
        "requestBody": {
          "description": "Update any of the information for a character.",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "format": "uuid",
                    "description": "The character uuid from the open world API."
                  },
                  "name": {
                    "type": "string",
                    "format": "text",
                    "description": "The name of the character"
                  },
                  "hp": {
                    "type": "integer",
                    "format": "int64",
                    "description": "The total hit points for a character"
                  },
                  "xp": {
                    "type": "integer",
                    "format": "int64",
                    "description": "The total xp for a character"
                  },
                  "pack": {
                    "type": "string",
                    "format": "json",
                    "description": "a json string of coins, weapons, and items and their count"
                  },
                  "notes": {
                    "type": "string",
                    "format": "text",
                    "description": "notes to manage any other additional information about a character"
                  }
                },
                "required": [
                  "id"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "description": "The updated character data"
                    }
                  }
                }
              }
            }
          },
          "237": {
            "description": "Successful. Character has leveled up.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "description": "The updated character data"
                    },
                    "levelUp": {
                      "type": "boolean",
                      "description": "Indicates the character leveled up"
                    }
                  }
                }
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/api/characters/travel": {
      "post": {
        "description": "Attampt to travel to a new zone. Returns wether the travel was successful or not.",
        "x-openai-isConsequential": false,
        "operationId": "TravelCharacter",
        "requestBody": {
          "description": "Attempt to travel to a new zone.",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "string",
                    "format": "uuid",
                    "description": "The character uuid from the open world API."
                  },
                  "direction": {
                    "type": "string",
                    "format": "text",
                    "description": "The attempted travel direction; north, south, east, or west"
                  }
                },
                "required": [
                  "id",
                  "direction"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "The character was travelled successfully",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "description": "The updated character data"
                    },
                    "newCoordinates": {
                      "type": "string",
                      "description": "The coordinates of the new zone the character is in"
                    },
                    "zone": {
                      "type": "object",
                      "description": "The zone object where the character is now located",
                      "properties": {
                        "id": {
                          "type": "integer",
                          "description": "The id of the zone."
                        },
                        "name": {
                          "type": "string",
                          "description": "The name of the zone."
                        },
                        "description": {
                          "type": "string",
                          "description": "The description of the zone."
                        },
                        "coordinates": {
                          "type": "string",
                          "description": "The coordinates of the zone."
                        },
                        "imageUrl": {
                          "type": "string",
                          "description": "The URL of the zone's image."
                        },
                        "level": {
                          "type": "integer",
                          "description": "The level of the zone."
                        },
                        "pointsOfInterest": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "description": "The discovered points of interest in this zone.",
                            "properties": {
                              "id": {
                                "type": "integer",
                                "description": "The id of the sign."
                              },
                              "name": {
                                "type": "string",
                                "description": "The name of the point of interest."
                              },
                              "description": {
                                "type": "string",
                                "description": "Text describing the current state of the point of interest."
                              }
                            }
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          },
          "201": {
            "description": "A new zone was discovered.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "data": {
                      "type": "object",
                      "description": "The character data."
                    },
                    "newCoordinates": {
                      "type": "string",
                      "description": "The coordinates of the new zone."
                    }
                  }
                }
              }
            }
          },
          "401": {
            "description": "The Zone is Impassable Terrain."
          },
          "402": {
            "description": "The Zone is blocke due to a quest dependency.",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "error": {
                      "type": "string",
                      "description": "The error message."
                    },
                    "questDependency": {
                      "type": "object",
                      "description": "The quest that needs to be completed to unblock the zone.",
                      "properties": {
                        "id": {
                          "type": "integer",
                          "description": "The id of the quest."
                        },
                        "title": {
                          "type": "string",
                          "description": "The title of the quest."
                        },
                        "description": {
                          "type": "string",
                          "description": "The description of the quest."
                        },
                        "requirements": {
                          "type": "object",
                          "description": "The requirements of the quest."
                        }
                      }
                    }
                  }
                }
              }
            }
          },
          "420": {
            "description": "The Character needs to wait to move again."
          }
        },
        "deprecated": false
      }
    },
    "/api/zones/create": {
      "post": {
        "description": "Create a new Zone.",
        "x-openai-isConsequential": false,
        "operationId": "CreateZone",
        "requestBody": {
          "description": "Attributes of the new zone.",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "string",
                    "format": "text",
                    "description": "The name of the zone"
                  },
                  "description": {
                    "type": "string",
                    "format": "text",
                    "description": "Flavor text to describe the zone, and some of its points of interest"
                  },
                  "coordinates": {
                    "type": "string",
                    "format": "text",
                    "description": "A string of coordinates to describe the zone's location. in the format (X,Y)"
                  },
                  "hostility": {
                    "type": "integer",
                    "format": "int64",
                    "description": "A number between 1 to 10 to describe the hostility of the zone. 1 is peaceful, 10 is extremely hostile"
                  },
                  "discovered_by": {
                    "type": "string",
                    "format": "uuid",
                    "description": "The uuid of the character that discovered the zone"
                  }
                },
                "required": [
                  "name",
                  "description",
                  "coordinates",
                  "hostility",
                  "discovered_by"
                ]
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/api/zones/fetch": {
      "get": {
        "description": "Fetch a zone's information.",
        "operationId": "FetchZone",
        "parameters": [
          {
            "name": "coordinates",
            "in": "query",
            "description": "The coordinates of a zone to be fetched. In the format (X,Y).",
            "required": true,
            "schema": {
              "type": "string",
              "format": "text"
            }
          }
        ],
        "deprecated": false,
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "integer",
                      "description": "The id of the zone."
                    },
                    "name": {
                      "type": "string",
                      "description": "The name of the zone."
                    },
                    "description": {
                      "type": "string",
                      "description": "The description of the zone."
                    },
                    "coordinates": {
                      "type": "string",
                      "description": "The coordinates of the zone."
                    },
                    "imageUrl": {
                      "type": "string",
                      "description": "The URL of the zone's image."
                    },
                    "level": {
                      "type": "integer",
                      "description": "The level of the zone."
                    },
                    "pointsOfInterest": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "description": "The discovered points of interest in this zone.",
                        "properties": {
                          "id": {
                            "type": "integer",
                            "description": "The id of the sign."
                          },
                          "name": {
                            "type": "string",
                            "description": "The name of the point of interest."
                          },
                          "description": {
                            "type": "string",
                            "description": "Text describing the current state of the point of interest."
                          }
                        }
                      }
                    },
                    "adjacentZones": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "description": "The adjacent zones to the current zone.",
                        "properties": {
                          "coordinates": {
                            "type": "string",
                            "description": "The coordinates of the adjacent zone."
                          },
                          "discovered": {
                            "type": "boolean",
                            "description": "Whether the zone has been discovered or not."
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/zones/update": {
      "put": {
        "description": "Update a zone's description.",
        "x-openai-isConsequential": false,
        "operationId": "UpdateZone",
        "requestBody": {
          "description": "Attributes of the zone to be updated.",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "coordinates": {
                    "type": "string",
                    "format": "text",
                    "description": "The coordinates of the zone to be updated."
                  },
                  "description": {
                    "type": "string",
                    "format": "text",
                    "description": "The new description for the zone."
                  }
                },
                "required": [
                  "coordinates",
                  "description"
                ]
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/api/signs/create": {
      "post": {
        "description": "Create a new Sign.",
        "x-openai-isConsequential": false,
        "operationId": "CreateSign",
        "requestBody": {
          "description": "Attributes of the sign.",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "text": {
                    "type": "string",
                    "format": "text",
                    "description": "The text for this sign"
                  },
                  "by_character": {
                    "type": "string",
                    "format": "uuid",
                    "description": "The uuid of the character that wrote this sign"
                  },
                  "point_of_interest": {
                    "type": "integer",
                    "format": "int64",
                    "description": "The ID of the point of interest this sign belongs to"
                  }
                },
                "required": [
                  "text",
                  "by_character",
                  "point_of_interest"
                ]
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/api/quests/contribute": {
      "put": {
        "description": "Contribute to a community quest.",
        "operationId": "ContrinbuteToQuest",
        "requestBody": {
          "description": "The character's contributions.",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "integer",
                    "format": "int64",
                    "description": "The quest id."
                  },
                  "characterId": {
                    "type": "string",
                    "format": "uuid",
                    "description": "The character id that is contributing."
                  },
                  "contribution": {
                    "type": "string",
                    "format": "json",
                    "description": "a json string of the contribution to the quest. The key is the item and the value is the amount."
                  }
                },
                "required": [
                  "coordinates",
                  "description",
                  "contribution"
                ]
              }
            }
          }
        },
        "responses": {
          "200": {
            "description": "Successful contribution"
          },
          "222": {
            "description": "Quest Completed!"
          },
          "488": {
            "description": "Contribution not accepted, quest already completed."
          }
        },
        "deprecated": false
      }
    },
    "/api/points-of-interest/create": {
      "post": {
        "description": "Create a new Point of Interest.",
        "x-openai-isConsequential": false,
        "operationId": "CreatePOI",
        "requestBody": {
          "description": "Attributes of the new point of interest.",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "string",
                    "format": "text",
                    "description": "The name of the zone"
                  },
                  "description": {
                    "type": "string",
                    "format": "text",
                    "description": "Flavor text to describe the zone, and some of its points of interest"
                  },
                  "zone": {
                    "type": "integer",
                    "format": "int64",
                    "description": "The Zone ID of the zone this point of interest belongs to"
                  }
                },
                "required": [
                  "name",
                  "description",
                  "zone"
                ]
              }
            }
          }
        },
        "deprecated": false
      }
    },
    "/api/points-of-interest/fetch": {
      "get": {
        "description": "Fetch a single point-of-interest's information.",
        "operationId": "FetchPOI",
        "parameters": [
          {
            "name": "id",
            "in": "query",
            "description": "The id of the point of interest to be fetched.",
            "required": true,
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          }
        ],
        "deprecated": false,
        "responses": {
          "200": {
            "description": "Successful operation",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "integer",
                      "description": "The id of the point of interest."
                    },
                    "name": {
                      "type": "string",
                      "description": "The name of the point of interest."
                    },
                    "description": {
                      "type": "string",
                      "description": "The description of the point of interest and the NPCs within."
                    },
                    "signs": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "description": "The signs at this point of interest.",
                        "properties": {
                          "id": {
                            "type": "integer",
                            "description": "The id of the sign."
                          },
                          "by_character": {
                            "type": "string",
                            "description": "The name of the character that wrote the sign."
                          },
                          "text": {
                            "type": "string",
                            "description": "The text on the sign."
                          }
                        }
                      }
                    },
                    "quests": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "description": "The quests at this point of interest.",
                        "properties": {
                          "id": {
                            "type": "integer",
                            "description": "The id of the quest."
                          },
                          "title": {
                            "type": "string",
                            "description": "The name of the quest."
                          },
                          "description": {
                            "type": "string",
                            "description": "The description of the quest."
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        }
      }
    },
    "/api/points-of-interest/update": {
      "put": {
        "description": "Update a point of interest's description.",
        "x-openai-isConsequential": false,
        "operationId": "UpdatePOI",
        "requestBody": {
          "description": "Attributes of the point of interest to be updated.",
          "required": true,
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "integer",
                    "format": "int64",
                    "description": "The id of the point of interest to be updated."
                  },
                  "description": {
                    "type": "string",
                    "format": "text",
                    "description": "The updated state for the point of interest."
                  }
                },
                "required": [
                  "id",
                  "description"
                ]
              }
            }
          }
        },
        "deprecated": false
      }
    }
  },
  "components": {
    "schemas": {}
  }
}
Use Open World Craft on 302.AI

Open World Craft GPT FAQs

Currently, access to this GPT requires a ChatGPT Plus subscription.
Visit the largest GPT directory GPTsHunter.com, search to find the current GPT: "Open World Craft", click the button on the GPT detail page to navigate to the GPT Store. Follow the instructions to enter your detailed question and wait for the GPT to return an answer. Enjoy!
We are currently calculating its ranking on the GPT Store. Please check back later for updates.

More custom GPTs by Antonio Llongueras on the GPT Store

Best Alternative GPTs to Open World Craft on GPTs Store

The Fate of the Brave - Completely Open World RPG

Dive into a fantasy world where complete freedom awaits you. Open World Role Playing Game. 完全に自由なファンタジーの世界での冒険があなたを待ってます。

800+

The Fate of the Brave - Completely Open World RPG on the GPT Store

Three Kingdoms Life Simulation(三国人生模拟)

Three Kingdoms simulator in open world.Don’t be limited to the choices given by the system(开放世界冒险角色扮演游戏,不必拘泥于系统给出的选择)

800+

Three Kingdoms Life Simulation(三国人生模拟) on the GPT Store

GameGenGPT

Generate expansive open-world games with just a few words 🕹

200+

GameGenGPT on the GPT Store

The SF texts gamizer

Turns SF texts into open world video games

90+

The SF texts gamizer on the GPT Store

Adventure Crafter

Interactive open-world adventure game designer

20+

Adventure Crafter on the GPT Store

The open world

"Chronicles of the Earth Tree" - Dive into a mystical RPG world of ancient titans, magic, and realms of cultivation, where every choice shapes your epic journey.

20+

The open world on the GPT Store

Horror Character Open World Companion

Your favorite Horror characters to guide you through life, death, open world or just to mess and be messed with. Just ask who is here and see who shows up. You can request to speak to other characters too or multiple at the same time. Play games, ask them to show pictures of their souls etc...

20+

Horror Character Open World Companion on the GPT Store

"The One with the Friends" Open World Companion

Ask your Friends anything you want!

20+

"The One with the Friends" Open World Companion on the GPT Store

Open World Craft

play an mmo-gpt

10+

Open World Craft on the GPT Store

Pokmon Open World Simulation

10+

Pokmon Open World Simulation on the GPT Store

Schitts Creek Open World Companion

Chat , play hang out with and explore the Characters and world of Schitts Creek. Create your own episode or just hang at the Schitt Motel.

10+

Schitts Creek Open World Companion on the GPT Store

Agent Simulator

Play an open-world agent game!

10+

Agent Simulator on the GPT Store

Pixel Adventure Games

One open-world pixel adventure games, offering addictive gameplay ideas and designs.

7+

Pixel Adventure Games on the GPT Store

Ansania RPG

A cyberpunk GPT-based open-world adventure.

7+

Ansania RPG on the GPT Store

The Gilled Apprentice

Learn about the Lacunae City open world at NPCdna.com. You’re an Archipelagic foreigner in vast, ancient Lacunae City. You have a bundle of mysterious banknotes. In a trading house, you see a gilled human behind her iron-barred counter. You say…

6+

The Gilled Apprentice on the GPT Store

Open World Craft

MMO-GPT

4+

Open World Craft on the GPT Store

K OK games

open world mode

1+

K OK games on the GPT Store

Open World Doge Experience

I narrate a humorous Doge text adventure.

Open World Doge Experience on the GPT Store

The SF texts gamizer

Turns SF texts into open world video games

The SF texts gamizer on the GPT Store

The SF texts gamizer

Turns SF texts into open world video games

The SF texts gamizer on the GPT Store