Skip to content

Instantly share code, notes, and snippets.

@lagonnebula
lagonnebula / Patrol_V2.js
Created February 15, 2016 11:55
Script de patrouille de token pour Roll20
on("ready", function(){
/*ToModify*/
var list = [
{tokenName: "Guerrier 1", orderList: 0, character: null},
{tokenName: "Archer", orderList: 0, character: null},
];
var pixelToMove = 70; // 70 ~ 1 case
var turnDuration = 0.5; //In second
var barLifeNumber = 3;
@lagonnebula
lagonnebula / FWS_Core.js
Last active November 2, 2015 16:43
Core plugin touse with FWS plugins
//=============================================================================
// FullWild Studio - Core
// FWS_Core.js
// Version: 0.1.0
//=============================================================================
var Imported = Imported || {};
Imported.FWS_Core = true;
var FWS = FWS || {};
@lagonnebula
lagonnebula / FWS_VideoConfig.js
Last active February 4, 2016 09:54
Plugin for RPGMaker MV
//=============================================================================
// Plugin to change video settings in a game menu like style
// FWS_VideoConfig.js
// Version: 0.1.2
//=============================================================================
var Imported = Imported || {};
Imported.FWS_Core = true;
var FWS = FWS || {};
@lagonnebula
lagonnebula / register.class.php
Last active December 31, 2015 04:09
This class in PHP, use the accescontrol.config. I hope can be usefull in the future ;) Since u can reload the server, u have to reboot server for each modification on this file :/
<?php
/**
* a PHP class for registering account in accescontrol.config remotely
* Each modification need to restart the server for load them bucause there is no reloading at the moment
*
* @author MeuhMeuh starbound.meuhmeuh.fr
* @copyright (c) 2013, Jeremy Villemain
*/
class Register{
/*example of use
@lagonnebula
lagonnebula / logs.class.php
Last active October 14, 2018 00:40
Get Players connected in your Starbound server. You can get Server Version, Who is online and Server status
<?php
/**
* a PHP class for checking server status and who is connected.
*
* @author MeuhMeuh starbound.meuhmeuh.fr
* @copyright (c) 2013, Jeremy Villemain
*/
class Logs{
private $etat;