u/SanctifiedChats

Want to INTEGRATE your Google Calendar WITHOUT creating events in TickTick? Here's how.

These directions assume this:

  • You want your Google calendar events to show up in your TickTick calendar WITHOUT creating any TickTick events for them, AND
  • you want your TickTick scheduled tasks to appear on your Google Calendar.
  1. If you already have your Google calendar integrated or subscribed in TickTick, remove those connections to start clean.
  2. Go to your Google Calendar ON THE WEB and create a NEW CALENDAR called TickTick. Do this by clicking the plus sign (+) next to "Other calendars" in the left-hand column. It will be a new calendar in addition to your regular calendar, and it will be owned by you.
  3. In TickTick (I use the TickTick PC application), go into your Settings and click on Integrations & Import. Click on Google Calendar, then choose "Subscribe from Google Calendar," then authenticate with Google and CHOOSE YOUR PERSONAL CALENDAR (not the TickTick calendar).
  4. Once step 3 above is done, test it to make sure you now see the Google Calendar events in your TickTick calendar, and make sure it did NOT create any tasks for them in TickTick.
  5. Next, in TickTick go into your Settings again and click on Integrations & Import. Click on Google Calendar, and this time choose "Integration with Google" but this time be sure to only choose the Google TickTick calendar you created. That will synchronize your TickTick calendar to the Google calendar called "TickTick."
  6. In your Google calendar view, be sure to turn on viewing your Google calendar and the "TickTick" calendar you created so you see both calendars superimposed on your calendar.
  7. Now schedule one of your tasks in TickTick onto the TickTick calendar. That should sync it to Google and make it appear on your integrated Google/TickTick calendar view. Note that there may be a delay for that connection, so be patient.

If all went well, in TickTick you should see your Google and TickTick scheduled items, and the same thing your Google calendar. If you use any Google calendar apps like EM Client, you'll just need to turn on viewing the TickTick calendar there too.

Hope all that makes sense. Obviously this is a kludgy workaround.

reddit.com
u/SanctifiedChats — 7 days ago

Mod Update - Hotkey Conflict Manager

Hotkey Conflict Manager

SUMMARY:

Use this mod to view all your assigned keys for all mods and game actions in one place. Dynamic warnings are displayed when a key gets assigned more than once. See the Description page for more info!

CHANGES IN VERSION 1.1:

  • Added a new "Unused Keys" page in the MCM.
  • Added the ability to selectively remove individual entries from the Mod Keys page.
  • Added headers "Keyboard", "Mouse", and "Controller" to the MCM pages to make it clearer what the keys apply to.
  • Consolidated and removed duplicate startup code. Added missing player alias to the plugin.
  • Auto-detection of several mods at install time in order to turn off game key conflict popups to prevent getting stuck at the character creation screen and to avoid excessive popups. The warnings can be turned back on anytime on the Configuration page.
  • Bug fix: Code now properly uses global variables from the ESP for new games instead of assuming the globals are at their original defaults.
  • Bug fix: Previously when more than 2 mods had the same conflicting key, I only showed one of the conflicting mods in the popup warning. Now I show all conflicting mods.

Enjoy. 😄

reddit.com
u/SanctifiedChats — 2 months ago

How to make a splash image appear in your MCM page!

I just spent several hours trying to get my splash image to show up in my MCM. So to help others I thought I'd post some directions. This worked for me anyway!

Do this in the MCM script at the top of the OnPageReset() function:

Event OnPageReset(string a_page)
if a_page == ""
LoadCustomContent("mymodname/splash.dds")
; NOTE: The real path above is Interface/mymodname/splash.dds
; but it assumes Interface, and you must use FORWARD slashes
return
else
UnloadCustomContent()
endif
(rest of code...)

And be sure the picture is saved as a DDS in paint.net with these settings in the DDS save dialog box:

BC3 (Linear, DXT5)
Error diffusion dithering: OFF
Error Metric: Perceptual
Cube Map from crossed image: OFF
Generate Mip Maps: Bicubic
Use gamma correction: OFF
(Max size is 770x446 I think; to check for sure and for more info see this: https://github.com/schlangster/skyui/wiki/MCM-Advanced-Features#CustomContent)

btw if you're using Dear Diary read its FAQ on how to turn on MCM images because they're turned OFF by default.

reddit.com
u/SanctifiedChats — 3 months ago

What would you do if imgur.com went away? (A suggestion for mod authors)

Today it occurred to me that if imgur.com went away my mod pages would have tons of broken links for the pictures I've put in them. So as a fail-safe I did the following:

  1. Go to imgur.com, click on profile pic in upper right, choose "Settings"
  2. Click on the "Download account images" button
  3. Save the download in a safe place that is backed up

The download will be a single zip of all your pictures along with the filename hash which you can match up later with the broken link in your mod page. I had 541 pictures and the 1.29GB download only took about 3 minutes. I'll probably do this every few months and replace the old zip file.

reddit.com
u/SanctifiedChats — 3 months ago

[Mod Release] Loading Screens Identified

Displays the names of mods in loading screens, showing you which mod the loading screen is from. You can change the placement, style, size, and formatting of the mod name via the ini. Blacklisting mods is easy. No ESPs or scripts. Compatible with everything.

Loading Screens Identified

It's very configurable via the .ini file. Take a look at the screenshots in the mod page for what it can do.

u/SanctifiedChats — 3 months ago