TOGGLE SIDEBAR

DISCORD

RECENT THREADS
All Welcome   [ Hatching ] Born wit... by Arbor
2 POSTS
57 minutes ago
All Welcome   [QUEST] EMERGENT INFL... by Game Master Dark
20 POSTS
1 hour ago
Private   I AM ALIVE by Loki
9 POSTS
4 hours ago
Private   Curse the Sun! by Pickles
6 POSTS
6 hours ago
Private   Spring Makeover by Aerys
7 POSTS
Yesterday, 11:23 PM
Private   t by Morana
5 POSTS
Yesterday, 07:38 PM
CYCLE 120Current time: Apr 04 2025, 03:18 PM


script for your codes
 
Online
Game Master
#1
hello class today we will learn about my favorite thing in the whole wide world:

how to be lazy.

first off, opening notepad is easier than you may think.
hold the windows key and press R - it brings up the run window.
type notepad.exe into the dialog box and press enter.
when notepad comes up, you can press ctrl+O to bring up the open window.
save your codes in one folder with easy to identify names.
choose the table code you want, for example: bluetable.txt
open it and ctrl+A to select all, then ctrl+C to copy.
ctrl+P into the post window. tada!

if you're on a mac i'm sorry there is probably a similar equivalent

boy, that's a lot of steps though.
like, dang.
that was easily four things to do....

what if there was something that did it for you?
or even better, just typed your code for you!?

introducing, autohotkey!
i wrote a script for you guys
you can change the key combo if you want, i have it set to win+z
(you have to download autohotkey to use this script)

save this code as a notepad file
save it as yourfilename.ahk giving it whatever file name you want
make sure you choose all files instead of text document .txt
it is important to end the file name in .ahk

if you update it, after saving it, double-click on the file in your documents folder so that it prompts you to restart the script since an older version is running. click yes to have it run the new version.


Code:
; CHOOSE TABLE BY CHARACTER

; FIRST CHARACTER TABLES
Menu, GAMEMASTER, Add, GM Post, GM_Post
Menu, GAMEMASTER, Add, Accepted Application, GM_Accept

; FIRST CHARACTER NAME
Menu, MyMenu, Add, GM Tables, :GAMEMASTER

Menu, MyMenu, Add  ; Add a separator line.

; SECOND CHARACTER TABLES
Menu, ROHAN, Add, Blue Table, Rohan_Blue
Menu, ROHAN, Add, Lightning Table, Rohan_Lightning

; SECOND CHARACTER NAME
Menu, MyMenu, Add, Rohan Tables, :ROHAN

Menu, MyMenu, Add  ; Add a separator line.

; THIRD CHARACTER TABLES
Menu, ANDRASTE, Add, Lyric Table, Andraste_Lyric
Menu, ANDRASTE, Add, Text Table, Andraste_Text

; THIRD CHARACTER NAME
Menu, MyMenu, Add, Andraste Tables, :ANDRASTE


return  ; End of script's auto-execute section.

GM_Post:
SendInput {Raw} <center><div style="width:500px; background-color: #e9e9e9; border-radius: 15px; padding: 20px; font-size: 11px; text-align: left"> POST </div></center>
return


GM_Accept:
SendInput {Raw} <center><div style="width:500px; background-color: #e9e9e9; border-radius: 15px; padding: 20px; font-size: 11px; text-align: left"><div style="font-size:14px; text-align: center"><b>Accepted!</b></div> `n `n Congratulations, your character has been accepted! You are now free to roleplay this character on Origin Cave! Here's a few suggestions to get you started: `n `n <div style="padding-left:30px"> — <a href="/forumdisplay.php?fid=40">Set up a <b>postlog</b></a> `n  — <a href="/forumdisplay.php?fid=39">Start a <b>plotting thread</b> to find some RP partners</a> `n — Make an IC thread of your character emerging from their chrysalis for the first time!</div> </div></center>
return

#z::Menu, MyMenu, Show  ; i.e. press the Win-Z hotkey to show the menu



Replace my characters with your own. The GM_Post and GM_Accept are just labels. You can make them whatever you want, but they have to be the same at the end of the menu line and after the return function. (So where they start with GM_Post: and then SendInput {Raw})

SendInput {Raw} is the fastest and easiest way to get your code to come up. When you press your desired hotkey (I used win+z in this script) in the active window, a menu will come up with your menu items. Choose the one you want and your code will type itself out (almost instantaneously).

Note! There must not be line breaks in your SendInput {Raw} string. If you want line breaks to appear in your code (as I did with the GM_Accept for Accepted Applications) you must use `n in the code where you want your line break to appear. You can use more than one to achieve more than one line break (`n `n is the equivalent to a paragraph tag amount of space).


here is a video of it in use
please mind the watermark lol i downloaded some jank random program to record with

enjoy!
feel free to ask questions too
:3

Shafaer Wrote:if you have a % in your code (along with some other things,, basically if it breaks!) you have to escape it using "`", so for example i have a "width:100%;" in my code, so i need to put "width:100`%;" !

ALSO, instead of using < br /> you can totally just use "`n" for a new line!! so enjoy that. there's a bunch more stuff you can do with the escape function ( ` )

 
Quote
 
is it a sixth sense if you only have four
Offline
Inactive
158 POSTS ʡ 49
Male 118 Cycles
Egyptian Fruit Bat Shafaer

#2
neato i will have to get this setup......................... then i can actually use all my tables w/o being angry all the time

 
Quote
 
Multisystem Poisonbirb!
Offline
Inactive
332 POSTS ʡ 5
Polygender (She/Her) 119 Cycles
Hooded Pitohui Shafaer

#3
OH SOME IMPORTANT THINGS I FOUND!

if you have a % in your code (along with some other things,, basically if it breaks!) you have to escape it using "`", so for example i have a "width:100%;" in my code, so i need to put "width:100`%;" !

ALSO, instead of using <br /> you can totally just use "`n" for a new line!! so enjoy that. there's a bunch more stuff you can do with the escape function/` but p much just check the documentation if you're having any problems ;;waves ( ;`;waves)



 
Quote
 
AND YOU SPOKE IN THAT VOICE I LOVE
AND LOVE AWOKE IN MY BOILIN' BLOOD
Offline
Inactive
453 POSTS ʡ 88
Male 119 Cycles
Grizzly Bear Madison

#4
I think I'm gonna have to give this a shot too, it looks really cool ;>;

MakynaLeon


 
Quote
 
 
Online
Game Master
#5
oh :0 i updated with the `n thing, thanks shaf :D

i'm glad you guys are liking it!
there is a ton of stuff you can do with autohotkey :3

 
Quote
 
Sickened in the sun
You dare tell me you love me
But you held me down and screamed you wanted me to die
Honey you know, you know I'd never hurt you that way
Offline
Inactive
365 POSTS ʡ 426
Female 119 Cycles
Hellhound Arkrael

#6
Why have I not seen this sooner :'D

I will have to set this up asap~
[Image: arkrael_by_fennecfyre-d8wiihx.png]
3/4 Threads.

 
Quote
 



Users browsing this thread: 2 Guest(s)
FORUM OPTIONS