Skip to content

FZFalzar/StarryPy_plugins

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

62 Commits
 
 
 
 
 
 

Repository files navigation

StarryPy_plugins

##A collection of plugins for the StarryPy starbound game server proxy Please note:

  • These plugins are free to use, free as in free and open source software.
  • The developers of StarryPy have very little influence on these plugins, they shall not be blamed if something goes wrong. Precaution is advised before downloading an running any code from the internet.

Plugins:

This plugin will connect to the specified server and join the specified target (if it's a channel), and echo messages to that target.

Note that it currently doesn't support multiple channels, but doing so is fairly trivial and it'll probably be added soon.

Add the following block to your config file:

"irc": { "auto_activate": false, "bot_nickname": "StarryPy", "channel": "!!REPLACE ME!!", "echo_from_channel": true, "nickserv_password": "!!REPLACE ME!!", "port": 6667, "server": "irc.freenet.org", "color": "^#495449;" },

Displays a /who upon login

Brings better functionality for the sending of Private Messages in Starbound Adds the following commands and abilities to the server:

@permissions(UserLevels.GUEST) /w #Sends a PM to target. Overrides default /w functionality. alias is /whisper /r #Replies to the last person who you received a PM from

@permissions(UserLevels.ADMIN) /socialspy <on|true|off|false> #Enables/Disables SocialSpy, a feature for admins to receive PMs sent by anyone, for policing purposes

Very simple plugin that responds to /uptime with the time StarryPy is running.

Very simple plugin that adds /me command to StarryPy.

Adds /starteritems command which can be used once per player and will give player a set of predefined starter items It is ment to work along with new_player_greeter_plugin, and will give a different set, that's why:

Add the following block to your config file:

"starteritems_plugin": { "auto_activate": true, "items": [ [ "coalore", 100 ], [ "money", 1000 ] ], "message": "You were given a set of starter items ;)" }

Very simple plugin that adds /players command, which is an alias for the existing /who command, to StarryPy.

Adds the following commands and abilities to the server:

@permissions(UserLevels.GUEST) #everything works for all users /bookmark #creates a personal bookmark of the planet (need to be on planet) /goto #moves ship to the bookmarked planet (need to be on ship) /remove #removes a bookmark (need to be on planet)

This adds basic support for Pushover messages. Right now it can:

  • Send a pushover message to a mobile device whenever a player joins
  • Avoid sending notifications for ignored players. Pushover supports delivery groups, so one could send messages to multiple users. This can be useful when running a private server so that you know when other players are online.

Add the following block to your config file:

"pushover_plugin": { "api_key": "MY_API_KEY", "ignored_players": "Player1", ], "user_key": "MY_USER_KEY" }

Sends a message to every player on the planet whenever another player warps down onto it.

Currently it conflicts with /warp from warpy because really that should be called /tp due to what it does. If you want to use this with warpy at the same time, you'll have to change one of them to work around the other.

This plugin allows admins to create and delete 'warps' to any planet. They just go on a planet and "/set_warp " to make a warp. It correctly blocks doing so if that name or planet have been used in another warp. Similarly, admins can use "/del_warp " to remove warps, and they don't have to be on a planet to do so.

All users can do "/warp" to view a list of set warps, and "/warp " to go to one of the planets free of charge. Currently it starts moving your ship to that planet and instantly warps you down, but I'm looking for a way to keep a player's ship where it is. The plugin has been tested and definitely works the way it should. Also, I suggest protecting a planet before making a warp to it.

Server status plugin available here. You can send query on specified port (specified in server_status.py) and plugin return status (online/offline) and number of players. Also include small php script for embed this in your website.

If activated, this plugin will send a notification to your Notify My Android account.

Add the following block to your config file:

    "nma_plugin": {
        "api_application": "StarryPy Server",
        "api_event": "Player joined",
        "api_key": "API_KEY",
        "api_priority": "0",
        "auto_activate": true,
        "ignored_players": [
            "Player"
        ]
    },

api_application: Name of the application the notification will come from.

api_event: Subject of the notification.

ignored_players: The plugin will not send a notification when a player in this list joins the server.

The other parameters are pretty self-explanatory

About

collection of plugins for the StarryPy starbound game server proxy

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%