These scripts/plugins are now being stored on the Erisa/RPG-Maker-Scripts repository, check there for the newest versions.
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
if true #Set to false to disable script. | |
# Copyright Erisa A (Seriel) 2018 | |
############################################################################### | |
# Seriel ~ Transfer Player on Gameover ~ <3 # | |
#=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=# | |
# The code here can be reused for any purpose, with credit given. # | |
# This includes both Commercial and Non-Commercial use. # | |
# However, contact is appreciated before Commercial use. # | |
#=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=# | |
# Contact email | [email protected] # |
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
#============================================================================== | |
# ** Game_Event | |
#------------------------------------------------------------------------------ | |
# This class handles events. Functions include event page switching via | |
# condition determinants and running parallel process events. Used within the | |
# Game_Map class. | |
#============================================================================== | |
class Game_Event < Game_Character | |
attr_accessor :id |
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
print("-=-=-=-=-=-=-=-=-=-=-") | |
print("= Welcome to quiz!! =") | |
print("-=-=-=-=-=-=-=-=-=-=-") | |
print() | |
score = 0 | |
question = 1 | |
print("[- Question 1 -]") | |
print("Q -- Into which sea does the Nile flow?") | |
print("A: Amundsen") |
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
print("┌-────────────────────────────-┐ _ ") | |
print("│ Procedural Programming Demo │ ( ) _ ") | |
print("│ With Python! │ (_` )_('> ") | |
print("├─────────────────────────────-┤ (__,~_)8 ") | |
print("│ │ _YY_ ") | |
print('""""|""|""^^^|^^^^^^^^^^^"""|""^^^^^^^"""|"^') | |
def procedure_demo(): | |
print("\n\nThis demo is actually a procedure in itself, but lets demo one anyway!") | |
print("(Comments will help here") |
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
if true #Set to false to disable script. | |
# Copyright Erisa A. (erisa.uk) 2018 | |
############################################################################### | |
# Seriel ~ Transfer Player on Gameover ~ <3 # | |
#=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=# | |
# The code here can be reused for any purpose, with credit given. # | |
# This includes both Commercial and Non-Commercial use. # | |
# However, contact is appreciated before Commercial use. # | |
#=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=# | |
# Contact: | [email protected] # |
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
if true #Set to false to disable script. | |
# (C) Copyright Erisa A (Seriel) 2019 | |
############################################################################### | |
# Seriel ~ Dynamic Variables # | |
# See under this notice for some help. # | |
#=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=# | |
# The code here can be reused for any purpose, with credit given. # | |
# This includes both Commercial and Non-Commercial use. # | |
# However, contact is appreciated before Commercial use. # | |
# Modified versions must give credit, however it must not be implied that the # |
These scripts/plugins are now being stored on the Erisa/RPG-Maker-Scripts repository, check there for the newest versions.
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
{ | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"defaultProfile": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}", | |
"snapToGridOnResize": false, | |
"profiles": { | |
"defaults": { | |
"fontFace": "Cascadia Code", | |
"useAcrylic": true, | |
"padding": "0, 0, 0, 0", | |
"colorScheme": "One Half Dark", |
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
// Set this in your worker's environment. wrangler.toml or cloudflare dashboard. | |
let secret = WORKERLINKS_SECRET; | |
addEventListener('fetch', event => { | |
event.respondWith(handleRequest(event.request)); | |
}) | |
/** | |
* Respond to the request | |
* @param {Request} request |
OlderNewer