This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import * as fs from 'fs/promises'; | |
| export type ParadoxModifiers = { | |
| [modifierName: string]: number; | |
| } | |
| export type ProductionMethod = { | |
| texture: string | |
| building_modifiers?: { | |
| level_scaled?: ParadoxModifiers |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # https://www.askapache.com/htaccess/ | |
| # tutorial 1 https://www.youtube.com/watch?v=0Ja7bZE3RFg | |
| # Tutorial for URL Amigavel https://www.youtube.com/watch?v=1pbAV6AU99I&t=226s | |
| # http://blog.thiagobelem.net/aprendendo-urls-amigaveis-com-regras-complexas | |
| # Tutorial de Redirects https://mediatemple.net/community/products/grid/204643080/how-do-i-redirect-my-site-using-a-htaccess-file | |
| # https://codigofonte.uol.com.br/artigos/confira-20-dicas-e-truques-extremamente-uteis-do-htaccess | |
| # | |
| # Liga o sitema | |
| RewriteEngine on |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package br.com.eduard.minecraft.plugins.licence; | |
| import java.net.URL; | |
| import java.net.URLConnection; | |
| import java.util.Scanner; | |
| import org.bukkit.Bukkit; | |
| import org.bukkit.plugin.java.JavaPlugin; | |
| import net.eduard.api.lib.modules.BungeeConfigs; |