Skip to content

Instantly share code, notes, and snippets.

@RoyCurtis
RoyCurtis / gist:4015355
Created November 5, 2012 04:38
Mirror of "Known Issues" page
This is a descriptive listing of '''known issues''' with the [[Active Worlds (software)]], such as the [[browser]], [[SDK]], [[world server]] and [[universe server]]. This page serves as a troubleshooting reference for bugs and quirks which may confuse users.
<!-- template:
{{known issue|severity=|ver=Build
|brief=
|notes=
|repro=
*#
|expected=
|actual=
|workaround=
@RoyCurtis
RoyCurtis / gist:4015366
Created November 5, 2012 04:39
rough draft of noted issues
AW Known Issues:
* Citizen box pops up without warning to prompt password change
* Windows and dialogs appear to redraw too may times on focus; causing eventual memory leak
** Most prevalent in CAV editor
* Tray icon shows "Activeworlds" notification every startup
* AW crashes when selecting a linked object immediately after modifying its mover
* Global chat is currently inoperable
* Text selection breaks sometimes
* In certain configurations of PE's, particles prematurely get destroyed
@RoyCurtis
RoyCurtis / gist:4144710
Created November 25, 2012 18:31
Seek and DestROY
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using VpNet.Core;
using VpNet.Core.Structs;
using VpNet.NativeApi;
namespace VPSeekAndDestroy
@RoyCurtis
RoyCurtis / phop.php
Created November 28, 2012 02:16
PHOP 0.04
<?php
// PHOP common functions - Roy Curtis
//
// COMMENT LINE BELOW WHEN DONE TESTING
error_reporting(0);
// Paths
define("SOURCE", "http://awcommunity.org/romperroom/");
define("LOCAL", "http://blizzard.vpusers.org/op/");
// Directories
define("TEMPLATES", "templates/");
@RoyCurtis
RoyCurtis / gist:4179862
Created December 1, 2012 00:57
Timer example
using System;
using System.Threading;
using System.Threading.Tasks;
using VpNet.Core;
using VpNet.Core.Structs;
namespace VPTest
{
class VPTest
{
@RoyCurtis
RoyCurtis / gist:4180868
Created December 1, 2012 06:42
PHOP Primmer .003
<?php
// PHOP Prim Generator - Roy Curtis
// Adapted from original design by Epsilion
//
// COMMENT LINE BELOW WHEN DONE TESTING
define("RGX_REAL", '[0-9]+\\.?[0-9]*');
define('RGX_PRIMNAME', '/^(?<type>[a-z]+)(?<params>.+?)$/i');
define('RGX_PRIMWALL', '/(?<x>'.RGX_REAL.')(x(?<y>'.RGX_REAL.'))?(?<p>p)?/i');
define('MIN_VALUE', 0.001);
define('MM_X', (float)2000);
#region Event handlers
static void onEnter(IInstance sender)
{
var name = sender.Attributes.AvatarName;
var session = sender.Attributes.AvatarSession;
if (name == "Roy2")
{
Console.WriteLine("Generating HUD for Roy2 (session {0})", session);
awBot.HudClear(session);
@RoyCurtis
RoyCurtis / bMotion Chat Logs
Last active October 13, 2015 17:47
bMotion chat logs
[Samantha]: bzz-bzz-bzz-bzz sploosh gibber
[Samantha]: oh! excuse me
[Samantha]: yeah i'm just having a shit
GC: ew
=====
Legion: you may suspend GC without pay if he didn't have cables on his hand
[Samantha]: Are those real handcuffs?
@RoyCurtis
RoyCurtis / gist:4253870
Created December 10, 2012 22:19
Translations for AWHT
[Core]
ClickForHelp = New? Click here!|¿Eres nuevo? Haga clic aquí|Вы новичок? Нажмите здесь|Sind sie neu hier? Klicken sie hier|Vous êtes nouveau? Cliquez ici|单击此处获得帮助
ClickToClose = Click to hide|Haga clic aquí para ocultar esta|Нажмите здесь, чтобы скрыть эту|Klicken sie hier, um dieses Fenster zu verstecken|Cliquez ici pour masquer ce|单击“来隐藏”
Language = LANGUAGE
[English]
Name = English
Prev = PREVIOUS
Next = NEXT
Hide = HIDE
var bot = new Instance
{
Name = "TomBot",
UserName = "Tom",
Password = "???"
}
.Login()
.World.Enter("Blizzard");
var bot2 = new Instance();