CustomChatCommands

Moved

Total Downloads: 1,432 - First Release: Feb 5, 2017 - Last Update: May 22, 2018

5/5, 6 likes
  1. Wulf

    Wulf Community Admin

    Could you upload what "default" you have right now?
     
  2. Attached
     

    Attached Files:

  3. possible to use "{player.name}" in broadcast?
     
  4. What other things like <color=> can you do? Are there ones for text size? Any others?
     
  5. Wulf

    Wulf Community Admin

    Check out Unity’s styling information.
     
  6. Thanks Wulf, in case anyone else is interested found this doc Unity - Manual: Rich Text
     
  7. what is the oxide permission group i dont see it in the details?
     
  8. Wulf

    Wulf Community Admin

    What group?
     
  9. nvm i was just being stupid
     
  10. Is not longer working after update

    Please fix
     

    Attached Files:

    Last edited by a moderator: Mar 2, 2018
  11. Help, i dont have colors :(
    Code:
          "Command": "info",
          "Messages": [
            "<color = # ffd016> INFO </ color>",
            "<color = # 939393> Site - <couleur> <color = # ffd016> [URL]http://orizon-servers.eu[/URL] </ color>",
            "<color = # 939393> Steam - <color> <color = # ffd016> [URL='http://steamcommunity.com/groups/orizonrust']Steam Community :: Group :: Orizon Rust[/URL] </ color>",
            "<color = # 939393> Discord - <color> <color = # ffd016> [URL='https://discord.me/orizonservers']Discord - Free voice and text chat for gamers[/URL] </ color>",
            "<color = # 939393> TS - <couleur> <couleur = # ffd016> 188.165.242.169 </ couleur>",
            "",
            "<color = # ffd016> / kit </ color> <color = # 939393> ▸ Voir les kits disponibles <color>",
            "<color = # ffd016> / clan </ color> <color = # 939393> ▸ Informations sur le clan <couleur>",
            "<color = # ffd016> / tp </ color> <color = # 939393> ▸ Informations sur les téléportations <couleur>",  
            "<color = # ffd016> / home </ color> <color = # 939393> ▸ Mettre un home <color>",
            "<color = # ffd016> / jour </ color> <color = # 939393> ▸ Voter pour le jour <couleur>",
            "<color = # ffd016> / trade </ color> <color = # 939393> Échanger avec d'autres joueurs <color>",
            "<color = # ffd016> / ad </ color> <color = # 939393> ▸ Gérer la fermeture automatique des portes <couleur>",    
            "<color = # ffd016> / bgrade </ color> <color = # 939393> Construire avec un grade auto-amélioré <color>",  
            "<color = # ffd016> / supprimer </ color> <color = # 939393> ▸ Détruire des constructions <couleur>",
            "<color = # ffd016> / vote </ color> <couleur = # 939393> ▸ Voter en échange de récompenses <couleur>"
          ],
          "Autorisation": "",
          "ConsoleCmd": null,
          "UserID": 0,
          "Diffusion": faux,
          "RconCmd": null,
          "Cooldown": 0.0,
          "MaxUses": 0
        },
     
    Last edited by a moderator: Mar 3, 2018
  12. Wulf

    Wulf Community Admin

    <color=#ffd016> not <color = # ffd016>
     
  13. can i change the text size
     
  14. Wulf

    Wulf Community Admin

    Check the styling info in the Docs link at the top of our site.
     
  15. it's the site that added the spaces, otherwise it's like that:
    Imgur
     
  16. Wulf

    Wulf Community Admin

    Should be working fine then. Just make sure you've reloaded the plugin.
     
  17. I dont understand
    here is the message displayed in-game:
    Imgur
     
  18. Wulf

    Wulf Community Admin

    Only reason I can see would be that the Rust client is somehow preventing those tags from being formatted.
     
    Last edited: Mar 6, 2018
  19. If you attach the .json we can take a look and find the problem, but this happends to me before and was because there was a missing "," or the command is just too long for a single line.

    Edit: I see the code and they are missing / in the last 10 lines: <color> says.
     
  20. Having a bit of a problem. I'm creating a basic event using CCC. I've created a command that will teleport a player to the heli tower to join the fight and i have a command to call the heli to the tower my problem is i trying to use /callchopper to 1) call the chopper to tower and 2) teleport the player to the tower using Rcon commands like:
    Code:
    "Command": "callchopper",
          "Messages": [
            "<color=lime>Prepare for a fight!</color> \n <color=lime>A Heli has been called type /heli to join!</color>"
            ],
          "Permission": "",
          "ConsoleCmd": null,
          "UserID": 0,
          "Broadcast": true,
          "RconCmd": [
          "teleport.topos {player.name} -997.5522 42.12281 -425.9641 \n callheli pos -997.5522 42.12281 -425.9641 1"
          ],
          "Cooldown": 86400.0,
          "MaxUses": 2
        },
    It's teleporting the player but not calling the heli! What am I doing wrong that I'm not seeing? Is there a way to do this?

    Thanks in advance!!!