Did stuff.

This commit is contained in:
Robert MacGregor 2012-08-17 20:48:47 -04:00
parent 09f43122e6
commit 8c96cba3e1
132 changed files with 56515 additions and 1448 deletions

View file

@ -0,0 +1,15 @@
//------------------------------------------------------------------------------
// Clan Management.cs
// The clan management system for BoL RPg Mod.
// Copyright (c) 2012 The DarkDragonDX
//==============================================================================
// Entry Point (called when the client first clicks it)
function EMailClient::main(%this, %client)
{
}
// action function, it's called when the client navigates.
function EMailClient::action(%this, %client, %page)
{
}

View file

@ -0,0 +1,8 @@
; Clan Management.dat
; Configuration file for the clan management application
; Copyright (c) 2012 The DarkDragonDX
[Application]
Name = "Clan Management";
ApplicationInstance = "ClanManagement"; Should not be duplicated; even if the mod could resolve duplication issues in realtime.
Description = "The clan management system for BoL RPg Mod.";

View file

@ -0,0 +1,15 @@
//------------------------------------------------------------------------------
// EMail.cs
// An E-Mail client for the Birth of Legend RPG Mod.
// Copyright (c) 2012 The DarkDragonDX
//==============================================================================
// Entry Point (called when the client first clicks it)
function EMailClient::main(%this, %client)
{
}
// action function, it's called when the client navigates.
function EMailClient::action(%this, %client, %page)
{
}

View file

@ -0,0 +1,8 @@
; Email.dat
; Configuration file for the BoL E-Mail client
; Copyright (c) 2012 The DarkDragonDX
[Application]
Name = "E-Mail";
ApplicationInstance = "EMailClient"; Should not be duplicated; even if the mod could resolve duplication issues in realtime.
Description = "An E-Mail client for the Birth of Legend RPG Mod.";

View file

@ -0,0 +1,20 @@
//------------------------------------------------------------------------------
// Save.cs
// The PDA Save function for BoL RPG mod.
// Copyright (c) 2012 The DarkDragonDX
//==============================================================================
// Entry Point (called when the client first clicks it)
function EMailClient::main(%this, %client)
{
}
// action function, it's called when the client navigates.
function EMailClient::action(%this, %client, %page)
{
}
// exit function, it's called when the client exits (returns to PDAMain)
function EMailClient::exit(%this, %client, %page)
{
}

View file

@ -0,0 +1,9 @@
; Save.dat
; The PDA Save function for BoL RPG mod.
; Copyright (c) 2012 The DarkDragonDX
[Application]
Name = "Save";
ForceInstall = true; Determines if this is in the PDA by default and cannot be removed.
ApplicationInstance = "ClanManagement"; Should not be duplicated; even if the mod could resolve duplication issues in realtime.
Description = "The PDA Save function for BoL RPG mod.";