Skip to content

Instantly share code, notes, and snippets.

@igromanru
igromanru / actors.md
Last active August 4, 2022 21:59
Sakura Dungeon actors

Usage in console:
knight.xp=99 (sets Ceri's experience 99)
knight.vp=99 (sets Ceri's current health to 99)
knight.ap=99 (sets Ceri's current AP to 99)

You can also use attributes from below, changes on the attributes are permanent.
fox.currency=9001 (gives Yomi(your char) 9001 mana shards) or player.currency=9001
bunny.level=10 (sets Bunny's (your companion) level to 10)
bunny.res=100 (sets Bunny's resistence to 100)

@igromanru
igromanru / visualstudio2019Key.txt
Created November 8, 2020 16:40
Visual Studio 2019 Product Key
Visual Studio 2019 Product Key
[Please Star this gist]
Follow My GitHub Account --> https://github.com/ch-kashif @ch-kashif
**Follow Me On Instagram -->> https://www.instagram.com/ch.kashif602/ **
Lets do a code together
Join Cloud Disk repository --> https://github.com/ch-kashif/CloudDisk
@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

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 / 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;

@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 / 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 / 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 / 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==