Skip to content

Instantly share code, notes, and snippets.

@igromanru
igromanru / URL_Search.regex
Last active August 29, 2015 13:57
RexEx Search for URLs in text
(?:^|\s|\()((?:www\.|https?://).*?\..*?)(?:\s|$|\))
@igromanru
igromanru / PS2 32bit Launcher.au3
Last active August 29, 2015 14:12
PlanetSide 2 32bit Launcher. It make sure that the 32bit exe get launched.
#cs ----------------------------------------------------------------------------
AutoIt Version: 3.3.10.2
Author: Igromanru
Script Function:
Launching the 32bit version of PS2
#ce ----------------------------------------------------------------------------
@igromanru
igromanru / GalaxyScan.user.js
Last active August 29, 2015 14:22
GalaxyScan
// ==UserScript==
// @name GalaxyScan
// @namespace IgroGalaxyScan
// @author Igromanru
// @include *.ogame.gameforge.com/game/index.php?*page=galaxy*
// @description Browsing through the Universe to get the data for GalaxyTool
// @version 0.1
// @grant none
// ==/UserScript==
@igromanru
igromanru / xAutoLoad.au3
Created July 29, 2015 19:10
Script to AutoLoad the LoL xMultiHook
Local $sFileName
Local $hSearch = FileFindFirstFile("*.exe")
While 1
$sFileName = FileFindNextFile($hSearch)
If $sFileName <> "" Or @error Then
ExitLoop
EndIf
WEnd
Run($sFileName)
ProcessWait($sFileName)
@igromanru
igromanru / win8Shortcut.au3
Created October 28, 2013 14:42
Create a shortcut to the Win 8 start menu.
#cs ----------------------------------------------------------------------------
AutoIt Version: 3.3.8.1
Author: igromanru
Script Function:
Create a shortcut to the win 8 start screen.
#ce ----------------------------------------------------------------------------
@igromanru
igromanru / items.md
Last active June 5, 2017 05:15
Sakura Dungeon Items

Attention! Always save your game before do any changes!

You can add an item with this console command:
player.items.append( [itemname] ) for example player.items.append(warp_gem)

Items with type valuable should be added with command:
player.valuables.append(fabric_bikini)

To remove any item type use:
player.remove(fabric_bikini)

@igromanru
igromanru / NPOSL-3.0-LICENSE.md
Created July 21, 2018 07:19
Non-Profit Open Software License 3.0 (NPOSL-3.0)

Non-Profit Open Software License 3.0 (NPOSL-3.0)

This Non-Profit Open Software License ("Non-Profit OSL") version 3.0 (the "License") applies to any original work of authorship (the "Original Work") whose owner (the "Licensor") has placed the following licensing notice adjacent to the copyright notice for the Original Work:

Licensed under the Non-Profit Open Software License version 3.0

  1. Grant of Copyright License. Licensor grants You a worldwide, royalty-free, non-exclusive, sublicensable license, for the duration of the copyright, to do the following:

a) to reproduce the Original Work in copies, either alone or as part of a collective work;

Dark Souls II and Scholar of the First Sin Cheat Engine Guide

Updates

17/06/2017

  • Updated links (replaced Cheat Engine Forum links to the Fearless Cheat Engine)
  • Fixed Effect list link.

23/12/2016

  • The SoFS table has been updated.
@igromanru
igromanru / delete_git_submodule.md
Created August 15, 2019 12:41 — forked from myusuf3/delete_git_submodule.md
How effectively delete a git submodule.

To remove a submodule you need to:

  • Delete the relevant section from the .gitmodules file.
  • Stage the .gitmodules changes git add .gitmodules
  • Delete the relevant section from .git/config.
  • Run git rm --cached path_to_submodule (no trailing slash).
  • Run rm -rf .git/modules/path_to_submodule (no trailing slash).
  • Commit git commit -m "Removed submodule "
  • Delete the now untracked submodule files rm -rf path_to_submodule