Skip to content

Instantly share code, notes, and snippets.

class PtGameScoreTypes:
"""(none)"""
kFixed = 0
kAccumulative = 1
kAccumAllowNegative = 2
diff --git a/Sources/Plasma/NucleusLib/pnAsyncCoreExe/Private/Win32/pnAceW32Dns.cpp b/Sources/Plasma/NucleusLib/pnAsyncCoreExe/Private/Win32/pnAceW32Dns.cpp
index 3aa557b..2baf2d2 100644
--- a/Sources/Plasma/NucleusLib/pnAsyncCoreExe/Private/Win32/pnAceW32Dns.cpp
+++ b/Sources/Plasma/NucleusLib/pnAsyncCoreExe/Private/Win32/pnAceW32Dns.cpp
@@ -88,9 +88,6 @@ static unsigned s_nextLookupCancelId = 1;
//===========================================================================
static void LookupProcess (Lookup * lookup, unsigned error) {
- unsigned count = 0;
- plNetAddress* addrs = nil;
@Hoikas
Hoikas / gist:2394888
Created April 15, 2012 21:25
Gehn.7 Changelog
- Utilize Windows 7 taskbar progress bars
- Add language changer to launcher
- Flash game window on new KI pms and KI mail
- Allow users to play Uru in any resolution supported by their monitor
- Add randomness (remove Shroomie predictability)
- Replace stack dumps with independent crash handler
- Lots of under-the-hood goodness
- Fix download progress bars tracking the wrong total file sizes
- Fix edge cases related to DST
- Fix a potential float overflow
@Hoikas
Hoikas / gist:2505365
Created April 27, 2012 03:11
Gehn.8 Changelog
- Make landing behaviors direction independent
- Fix cleft imager
- Fix SSE3 detection
- Fix crash exposed by unexpected localization data
- Fix crash in the age patcher
- Restore compatibility with x87-only CPUs
- Restore BlueSpiral door functionality
- Relaxed Splines
- Brand all the things
- Fix Alt+F4
- Fix a potential multiplayer synchronization bug
- Fix some BlueSpiral synchronization issues
- Fix some issues related to fireflies
- Fix an issue with imagers containing unicode characters in their names
- Limit the minimum resolution to 800x600
- Minimize full screen window when an error occurs
- Restore Ahnonay quabs
- Update game data (PRPs) to MOULa 1.912
Segfault at ./bin/dirtsand() [0x80b1fc0]
from ./bin/dirtsand() [0x80b204d]
from [0xb774e400]
from ./bin/dirtsand() [0x80a0075]
from ./bin/dirtsand(_ZNSt8__detail9_Map_baseIN2DS6StringESt4pairIKS2_N3SDL5StateEESt10_Select1stIS7_ELb1ESt10_HashtableIS2_S7_SaIS7_ES9_St8equal_toIS2_ENS1_10StringHashENS_18_Mod_range_hashingENS_20_Default_ranged_hashENS_20_Prime_rehash_policyELb0ELb0ELb1EEEixERS4_+0x16) [0x80aa1e6]
from ./bin/dirtsand(_Z11dm_read_sdlP16GameHost_PrivateP18GameClient_PrivatePN4MOUL14NetMsgSDLStateEb+0x884) [0x80a5584]
from ./bin/dirtsand(_Z15dm_game_messageP16GameHost_PrivateP21Game_PropagateMessage+0x3fa) [0x80a651a]
from ./bin/dirtsand(_Z11dm_gameHostP16GameHost_Private+0x4c) [0x80a680c]
from /usr/lib/i386-linux-gnu/libstdc++.so.6(+0xaa4d7) [0xb74c04d7]
from /lib/i386-linux-gnu/i686/cmov/libpthread.so.0(+0x5c39) [0xb7261c39]
@Hoikas
Hoikas / gist:3320796
Created August 11, 2012 04:23
Gehn.10
- Fixed truncated windows when going from full screen to a same sized window
- Fixed a crash that occurs when there are no Direct3D devices
- Tweaked the brightness of the progress bars and text
- Restored sparklie cycling
- Restored clock Relto page
- Added Trebivdil
- Applied Feng Shui Shaders
from http import client as httplib
import json
# Stolen shamelessly from gitobot
class GithubPhailure(Exception):
pass
class NotFound(GithubPhailure):
pass
@echo off
:: Visual Studio 2012 command prompt
"%ProgramFiles(x86)%\Microsoft Visual Studio 11.0\VC\vcvarsall.bat" x86
:: WinXP compatible Windows SDK (7.1a)
set INCLUDE=%ProgramFiles(x86)%\Microsoft SDKs\Windows\7.1A\Include;%INCLUDE%
set PATH=%ProgramFiles(x86)%\Microsoft SDKs\Windows\7.1A\Bin;%PATH%
set LIB=%ProgramFiles(x86)%\Microsoft SDKs\Windows\7.1A\Lib;%LIB%
set CL=/D_USING_V110_SDK71_;%CL%
@Hoikas
Hoikas / binkbegone.sh
Created December 11, 2012 05:22 — forked from cwalther/binkbegone.sh
CWE-ou & H-uru/Plasma History Rewrite
#!/bin/bash
if test "x$1" == x -o "x$2" == x; then
echo "Usage: $0 <original CWE-ou repo> <original H-uru/Plasma repo>"
exit 1
fi
if test -e old-hg -o -e uncorrupt-git -o -e uncorrupt-hg -o -e filemap1 -o -e filemap2 -o -e filtered-hg -o -e filtered-git; then
echo "Output files/folders exist."
read -p "OK to delete? (y/n) " REPLY