13 Commits

Author SHA1 Message Date
Resxt
59bfdc19fe chat_commands 1.1.9
[Refactor]
Fix wrong type error during help message comparison.
Change default strings to array of one string
2023-02-06 04:38:18 +01:00
Resxt
a51165558c chat_commands 1.1.8
Added wallhack command to grant or remove access to a wallhack (red boxes) to a player (toggle)

[DEV]
This showcases how to implement a status/toggle command with a non permanent logic (implementing OnPlayerSpawned())
2023-02-06 04:14:53 +01:00
Resxt
6bf08da690 chat_commands 1.1.7
Added invisible command to grant or remove the invisible state to a player (toggle)
Note that this does not make you invisible to bots in the sense that even if they can't see you they will still know your position and shoot you on sight
2023-02-06 03:51:17 +01:00
Resxt
7766d9ecb9 chat_commands 1.1.6
[Dev]
Added default strings the dev can pass to automatically generate an help message for the commands with one or two player(s) as arg
2023-02-06 03:36:59 +01:00
Resxt
8ee3ca5bc7 chat_commands 1.1.5
All commands that require a player name to be passed now work both with a player name or with "me" to target yourself

[Dev]
All commands that use FindPlayerByName will now work with "me" passed as the player out of the box since FindPlayerByName now returns self if the name param is "me"

[Refactor]
Fix undefined errors when calling a status command for the first time on a player
2023-02-06 03:22:40 +01:00
Resxt
b1ec92bd0c chat_commands 1.1.4
Added norecoil command to grant or remove access to no recoil to a player (toggle)

[DEV]
Introduced the status system to make implementing toggle commands easier.
It allows the dev to get and set a status on a player per command and display messages both for the person running the command and for the player affected when the player status changes (for example no recoil ON/OFF).
Note that the status is always OFF by default since we always grant something to a player
2023-02-06 03:05:21 +01:00
Resxt
73846c8cc9 chat_commands 1.1.3
Added teleport command to teleport a player or yourself to another player or yourself
!teleport me Eldor
!teleport Eldor me
!teleport Eldor Rektinator

[Refactor]
Replaced array[array.size] = value with AddElementToArray(array, value)
2023-01-27 21:58:12 +01:00
Resxt
caeacbf3d4 chat_commands 1.1.2
Added changeteam command to swap a player to the other team
!changeteam Resxt
2023-01-19 22:07:25 +01:00
Resxt
061a6bf516
chat_commands 1.1.1
Fix missing port for example
2022-10-15 15:57:03 +02:00
Resxt
0cd38e9785 chat_commands 1.1.1
Added help command to display the help message for a particular command.
An optional commandHelp argument has been added to the CreateCommand function.
A help command with no arguments can still be created. The script will understand the context and display the right info

Made examples in InitCommands() clearer by separating them and adding comments

Added comments to separate each command section: commands, help and other commands
2022-10-15 15:42:45 +02:00
Resxt
e235b76ebe chat_commands 1.1
Allow configuration of the commands prefix

Added a function to easily create commands

Added the ability to pass an array of server ports instead of just one port per command

Added the ability to add a command to all servers using level.commands_servers_ports

Fixed the warning when running a function command by explicitly defining whether a command is of type text or function

Fixed commands not working when using the say command through the console instead of the chat. Now both works
2022-10-15 14:31:59 +02:00
Resxt
7997a0446e Update chat_commands.gsc 2022-09-22 17:13:23 +02:00
Resxt
6d8f87c45d Create chat_commands 2022-09-22 17:08:11 +02:00