From fcd5aab3d39ec3a18e66550cd366ed671991f7ff Mon Sep 17 00:00:00 2001 From: Zeus Script <51821404+Z-eus@users.noreply.github.com> Date: Wed, 1 Apr 2026 00:27:04 +0300 Subject: [PATCH] Added "Frequently Asked Questions" --- faq.mdx | 60 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ mint.json | 3 ++- 2 files changed, 62 insertions(+), 1 deletion(-) create mode 100644 faq.mdx diff --git a/faq.mdx b/faq.mdx new file mode 100644 index 0000000..8777b9d --- /dev/null +++ b/faq.mdx @@ -0,0 +1,60 @@ +--- +title: Frequently Asked Questions +description: 'You can find the answers to frequently asked questions about VORP Core here' +mode: 'wide' +--- + + + + + +--- + +### How can I translate VORP Scripts? +You can choose your own language from the `translation.lua`, `language.lua`, `config.lua` files in VORP Scripts, if you have one, or you can translate your scripts into your own language from the same places. + +### How can I translate item name/label/description? +You can edit in `items` table in database (It is not recommended to change the names in the `item` column in `items` table) + +### How can I give item/weapon/job? +You can do in `vorp_admin` or you can use command; `/additems `, `/addweapon `, `/addjob ` + +### How can I add new items? +`items` table in database + +### How can I add images for items in the inventory? +You can add any `.png` image to `\resources\[VORP]\[vorp_essentials]\vorp_inventory\html\img\items` location with the name of the item in `items` table in the database + +### How do I add food and drinks? +In the `vorp_metabolism/config.lua` file, you can add any food, drink or health item you want by looking at the other examples. (Don't forget to add the items you add here to the `item` table in the database) + +### How can I turn off the huds that appear on the top right (Cash, Gold, ID etc.)? +You can set true `HideMoney`, `HideGold` in `\resources\[VORP]\[vorp_essentials]\vorp_core\config\config.lua` + +### How do I prevent everyone from creating 5 characters? +You can set the `MaxCharacters` value in `\resources\[VORP]\[vorp_essentials]\vorp_core\config\config.lua` + +### How can I set the amount of time the player has to wait before respawning? +You can set the `RespawnKeyTime` value in `\resources\[VORP]\[vorp_essentials]\vorp_core\config\config.lua` + +### How can I add admin to the server? +You can add admin to your server based on the examples in `server.cfg`, `vorp_admin/vorp_perms.cfg` files. In addition, you need to change the content of the `group` column in the `characters` and `users` tables in the database to `admin` + +### How can I edit the character height/scale? +`scale` in `skinPlayer` in `characters` table in database + +### How can I CK character? +The easiest way is to go to your database, SHIFT+CTRL+F, paste the player's Steam Hex in the search field and delete the results to CK them. + +### How do I change the time/weather? +`/time` command or you can use `/weatherui` command to open time/weather management menu + +### How can I integrate Discord Rich Presence +After creating an application from the [Discord Developer Portal](https://discord.com/developers), you need to upload assets to the application and fill in the required fields(`\resources\[VORP]\[vorp_essentials]\vorp_core\config\config.lua`) according to the application information + +### How can I solve 32 player problem? +Since this problem is caused by CFX, there is no way to solve it outside of CFX. (Bucket/Instance scripts are not very recommended) + +#### For general RedM problem [RedM FAQ](https://github.com/Z-eus/RedM-FAQ) + +#### For Support and more [VORP Core Official Discord Server](https://discord.gg/JjNYMnDKMf) \ No newline at end of file diff --git a/mint.json b/mint.json index 527d704..3606446 100644 --- a/mint.json +++ b/mint.json @@ -90,7 +90,8 @@ "pages": [ "introduction", "quickstart", - "bestpractices" + "bestpractices", + "faq" ] }, {