Console command not workingNot An Issue
Hello i tried to use console command of this plugins but seems to not work (nothing happens);
What i am doing wrong ?
f1 open console
type
pt  (no reply)
type
pt static (no effect)

any suggestion ? (chat works but i need console ones)
Keep in mind that the Rust client may have conflciting commands, so not an console commands in plugins may work directly on the Rust client, instead are intended for the server console or RCON.
As Wulf said, the console commands are for the server console and/or RCON.
we intended to use plugin timed execute to start some parachute events every x time ; we didn't be able to use it; we tried using chat.say but didn't work. I read somewhere that i could not use chat.say so we tried to use the console ones; how we would run some timed event on server with parachute plugin could you guys do some example  i could use ? like starting 2 different event in 2 different coordinate  every sometime ;
s4ff0
we intended to use plugin timed execute to start some parachute events every x time ; we didn't be able to use it; we tried using chat.say but didn't work. I read somewhere that i could not use chat.say so we tried to use the console ones; how we would run some timed event on server with parachute plugin could you guys do some example  i could use ? like starting 2 different event in 2 different coordinate  every sometime ;
News about this?

Console commands are pretty straight forward... You need to read or see how the Time Execute plugin works in order to do what you want. Even with that its pretty straight forward.

```json

"RealTime-Timer": {
"00:20:00": "pt static",
"12:20:00": "pt call 100 140"
},```

Console Commands:

  • pt - Displays help information for Paratroopers
  • pt kill or pt cancel - Cancels the Paratroopers Event
  • pt loc - Display the location of current Paratroopers
  • pt count - Display any active counts of Paratroopers
  • pt random - Start Paratrooper Event at a Random Location
  • pt static - Start Paratrooper Event at coordinates ({0}, {1}) according to config setting
  • pt call x x - Start Paratrooper Event at specific coordinates (x, x)
  • pt player playername - Start Paratrooper Event at Players Location
  • pt player playername kitname count health(optional) - Start Paratrooper Event at Players Location with a specific kit and set number of paratroopers, setting the health is optional.

Locked automatically