mirror of
https://github.com/Ragora/T2-BoL.git
synced 2026-07-16 03:44:32 +00:00
Did stuff.
This commit is contained in:
parent
09f43122e6
commit
8c96cba3e1
132 changed files with 56515 additions and 1448 deletions
15
data/bolContent/pdaApplications/Clan Management.cs
Normal file
15
data/bolContent/pdaApplications/Clan Management.cs
Normal 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)
|
||||
{
|
||||
}
|
||||
8
data/bolContent/pdaApplications/Clan Management.dat
Normal file
8
data/bolContent/pdaApplications/Clan Management.dat
Normal 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.";
|
||||
15
data/bolContent/pdaApplications/EMail.cs
Normal file
15
data/bolContent/pdaApplications/EMail.cs
Normal 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)
|
||||
{
|
||||
}
|
||||
8
data/bolContent/pdaApplications/EMail.dat
Normal file
8
data/bolContent/pdaApplications/EMail.dat
Normal 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.";
|
||||
20
data/bolContent/pdaApplications/Save.cs
Normal file
20
data/bolContent/pdaApplications/Save.cs
Normal 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)
|
||||
{
|
||||
}
|
||||
9
data/bolContent/pdaApplications/Save.dat
Normal file
9
data/bolContent/pdaApplications/Save.dat
Normal 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.";
|
||||
Loading…
Add table
Add a link
Reference in a new issue