List of useful commands for the basic functions of your server using our asset, you can execute them using ExecuteCommand or read them informatively.
copy
usability
description
loadskin
/loadskin
You can with this command make a load to your skin
1. revive player
This event is revive the player, After the death of the player
Config.ReviveTrigger ='hospital:client:Revive'
2. Blips
You can modify the text and numbers as well as the color of the blips in this brief tutorial. To learn more about blips and their colors, visit this website: https://docs.fivem.net/docs/game-references/blips.
Config.Blips = { Text ='PaintBall Game', Number =437, Color =15,}
3. Location
You must obtain your coordinates from your server and enter them here in order to change the coordinates of the player respawn location after the conclusion of the game and the round.
You will learn how to adjust the round's duration (Defult Game Minutes) and the additional round duration (After The Defult Time Ending), where 3 = 3 minutes and 0.5 = 30 seconds, respectively.
Config.RoundTime =3-- Defult Game MinutesConfig.ExtraTime =0.5-- Death Match Minutes (After The Defult time ending)
5. weapon setting
The weapon that players use in the game and ammo for each player all this you can change it in two lines, just change the name of the weapon and the number of ammo.
Config.Weapon ='weapon_snspistol_mk2' -- Paintball WeaponConfig.Ammo =500-- Weapon Ammo
6. map coords
In this configuration, there are two teams, each of which has its own spawn locations as well as overtime spawn points.
you have two teams blue and red In each team you have male and female, if you wanna change the clothes you mast to go to your server and take the number of your close and put it in the config.
Config.ClothesData = { ["team1"] = { -- First Team , Blue Male = { -- Male ['gloves'] = { Number =17 , Texure =0, }, ['legs'] = { Number =158 , Texure =3, }, ['shoes'] = { Number =120 , Texure =3, }, ['undershirt'] = { Number =15 , Texure =0, }, ['jacket'] = { Number =291 , Texure =3, }, ['vest'] = { Number =0 , Texure =1, } , ['mask'] = { Number =28 , Texure =0, }, }, Female = {-- Female ['gloves'] = { Number =49 , Texure =0, }, ['legs'] = { Number =121 , Texure =3, }, ['shoes'] = { Number =74 , Texure =3, }, ['undershirt'] = { Number =15 , Texure =0, }, ['jacket'] = { Number =293 , Texure =3, }, ['vest'] = { Number =0 , Texure =1, } , ['mask'] = { Number =37 , Texure =0, }, }, }, ["team2"] = { -- Secend Team , Red Male = { -- Male ['gloves'] = { Number =17 , Texure =0, }, ['legs'] = { Number =158 , Texure =5, }, ['shoes'] = { Number =120 , Texure =5, }, ['undershirt'] = { Number =15 , Texure =0, }, ['jacket'] = { Number =291 , Texure =5, }, ['vest'] = { Number =0 , Texure =1, } , ['mask'] = { Number =28 , Texure =0, }, }, Female = { -- Female ['gloves'] = { Number =49 , Texure =0, }, ['legs'] = { Number =121 , Texure =5, }, ['shoes'] = { Number =74 , Texure =5, }, ['undershirt'] = { Number =15 , Texure =0, }, ['jacket'] = { Number =293 , Texure =5, }, ['vest'] = { Number =0 , Texure =1, } , ['mask'] = { Number =37 , Texure =0, }, }, },}