Gamma Age module files
Added internal Gamma Age module files.
This commit is contained in:
parent
c6517c8942
commit
ac0d96bd74
BIN
gamma_age_v2/DMBookofJournalE.uti
Normal file
BIN
gamma_age_v2/DMBookofJournalE.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/Repute.fac
Normal file
BIN
gamma_age_v2/Repute.fac
Normal file
Binary file not shown.
BIN
gamma_age_v2/ab_desctrig_fnf.ncs
Normal file
BIN
gamma_age_v2/ab_desctrig_fnf.ncs
Normal file
Binary file not shown.
78
gamma_age_v2/ab_desctrig_fnf.nss
Normal file
78
gamma_age_v2/ab_desctrig_fnf.nss
Normal file
@ -0,0 +1,78 @@
|
||||
///////////////////////////////////////////////////////////////////
|
||||
///////////////////////////////////////////////////////////////////
|
||||
///////////////////////////////////////////////////////////////////
|
||||
/////////////// Created By ///////////////
|
||||
/////////////// Abaddon, Angel of the Abyss ///////////////
|
||||
/////////////// Contactabe via Bioware® ///////////////
|
||||
/////////////// Forums and Private Message ///////////////
|
||||
/////////////// Utilities: ///////////////
|
||||
/////////////// __Abaddon__ ///////////////
|
||||
/////////////// ///////////////
|
||||
///////////////////////////////////////////////////////////////////
|
||||
///////////////////////////////////////////////////////////////////
|
||||
/////////////// All Scripts and Hakpak's are ///////////////
|
||||
/////////////// distibuted as is, with no ///////////////
|
||||
/////////////// warranty or responsibility ///////////////
|
||||
/////////////// undertaken by the author. ///////////////
|
||||
/////////////// Caveat Emptor! ///////////////
|
||||
/////////////// This is freeware, You may ///////////////
|
||||
/////////////// distribute it in its ORIGINAL ///////////////
|
||||
/////////////// form at will, if this script ///////////////
|
||||
/////////////// is used in any large projects such ///////////////
|
||||
/////////////// as a PW or story module, the author ///////////////
|
||||
/////////////// would like to be informed, merly as ///////////////
|
||||
/////////////// a curtosey and indicator of both ///////////////
|
||||
/////////////// applicability and success :) ///////////////
|
||||
///////////////////////////////////////////////////////////////////
|
||||
///////////////////////////////////////////////////////////////////
|
||||
////////////// Script Name: ab_DescTrig ///////////////
|
||||
////////////// File Name: Descriptive Triggers ///////////////
|
||||
////////////// Author(s): Abaddon ///////////////
|
||||
////////////// Galap ///////////////
|
||||
///////////////////////////////////////////////////////////////////
|
||||
///////////////////////////////////////////////////////////////////
|
||||
// Commentary/Introduction: //
|
||||
// ----------------------- //
|
||||
// Fire and forget trigger. Grabs the name of the trigger
|
||||
// its attatched to and displays it as floaty text on a PC
|
||||
// only one time.
|
||||
// Modified as per Nathraiben's suggestion so that individual tags are no longer
|
||||
// required on the trigers.
|
||||
///////////////////////////////////////////////////////////////////
|
||||
///////////////////////////////////////////////////////////////////
|
||||
////////////// Function Headers ///////////////
|
||||
///////////////////////////////////////////////////////////////////
|
||||
|
||||
//Fires The name of the trigger at the entering PC*
|
||||
// uses an int to make only fire once.
|
||||
// Int is established on the PC
|
||||
// String Variance == GetTag(of the trigger) + Has Fired
|
||||
// *There is a GetIsPC check in this function.
|
||||
void ab_Trig_Description_FireOnceOnly();
|
||||
|
||||
void ab_Trig_Description_FireOnceOnly()
|
||||
{
|
||||
object oPC = GetEnteringObject();
|
||||
string sDesc = GetName(OBJECT_SELF);
|
||||
//Determine that the trigger hasnt fired for this PC before
|
||||
if (GetLocalInt(OBJECT_SELF, GetName(oPC) + "Has Fired") < 1)
|
||||
{
|
||||
//Determine that the PC is a valid object
|
||||
if (GetIsObjectValid(oPC))
|
||||
{
|
||||
//If conditional just to verify that it is a PC not a wandering NPC or something of that nature
|
||||
if (GetIsPC(oPC))
|
||||
{
|
||||
// I like floaty text :) soo much nicer and more in mood for a player
|
||||
FloatingTextStringOnCreature(sDesc, oPC, FALSE);
|
||||
//Set the Int so that it will no longer fire for the PC
|
||||
SetLocalInt(OBJECT_SELF, GetName(oPC) + "Has Fired", 1);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
void main()
|
||||
{
|
||||
ab_Trig_Description_FireOnceOnly();
|
||||
}
|
||||
|
BIN
gamma_age_v2/ab_desctrig_mult.ncs
Normal file
BIN
gamma_age_v2/ab_desctrig_mult.ncs
Normal file
Binary file not shown.
74
gamma_age_v2/ab_desctrig_mult.nss
Normal file
74
gamma_age_v2/ab_desctrig_mult.nss
Normal file
@ -0,0 +1,74 @@
|
||||
///////////////////////////////////////////////////////////////////
|
||||
///////////////////////////////////////////////////////////////////
|
||||
///////////////////////////////////////////////////////////////////
|
||||
/////////////// Created By ///////////////
|
||||
/////////////// Abaddon, Angel of the Abyss ///////////////
|
||||
/////////////// Contactabe via Bioware® ///////////////
|
||||
/////////////// Forums and Private Message ///////////////
|
||||
/////////////// Utilities: ///////////////
|
||||
/////////////// __Abaddon__ ///////////////
|
||||
/////////////// ///////////////
|
||||
///////////////////////////////////////////////////////////////////
|
||||
///////////////////////////////////////////////////////////////////
|
||||
/////////////// All Scripts and Hakpak's are ///////////////
|
||||
/////////////// distibuted as is, with no ///////////////
|
||||
/////////////// warranty or responsibility ///////////////
|
||||
/////////////// undertaken by the author. ///////////////
|
||||
/////////////// Caveat Emptor! ///////////////
|
||||
/////////////// This is freeware, You may ///////////////
|
||||
/////////////// distribute it in its ORIGINAL ///////////////
|
||||
/////////////// form at will, if this script ///////////////
|
||||
/////////////// is used in any large projects such ///////////////
|
||||
/////////////// as a PW or story module, the author ///////////////
|
||||
/////////////// would like to be informed, merly as ///////////////
|
||||
/////////////// a curtosey and indicator of both ///////////////
|
||||
/////////////// applicability and success :) ///////////////
|
||||
///////////////////////////////////////////////////////////////////
|
||||
///////////////////////////////////////////////////////////////////
|
||||
////////////// Script Name: ab_DescTrig ///////////////
|
||||
////////////// File Name: Descriptive Triggers ///////////////
|
||||
////////////// Author(s): Abaddon ///////////////
|
||||
////////////// Galap ///////////////
|
||||
///////////////////////////////////////////////////////////////////
|
||||
///////////////////////////////////////////////////////////////////
|
||||
// Commentary/Introduction: //
|
||||
// ----------------------- //
|
||||
// Fire and forget trigger. Grabs the name of the trigger
|
||||
// its attatched to and displays it as floaty text on a PC
|
||||
// every time they activate the trigger.
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////
|
||||
///////////////////////////////////////////////////////////////////
|
||||
////////////// Function Headers ///////////////
|
||||
///////////////////////////////////////////////////////////////////
|
||||
|
||||
//Fires The name of the trigger at the entering PC*
|
||||
// uses an int to make only fire once.
|
||||
// Int is established on the PC
|
||||
// String Variance == GetTag(of the trigger) + Has Fired
|
||||
// *There is a GetIsPC check in this function.
|
||||
void ab_Trig_Description_FireOnceOnly();
|
||||
|
||||
void ab_Trig_Description_FireOnceOnly()
|
||||
{
|
||||
object oPC = GetEnteringObject();
|
||||
string sDesc = GetName(OBJECT_SELF);
|
||||
//Determine that the PC is a valid object
|
||||
if (GetIsObjectValid(oPC))
|
||||
{
|
||||
//If conditional just to verify that it is a PC not a wandering NPC or something of that nature
|
||||
if (GetIsPC(oPC))
|
||||
{
|
||||
// I like floaty text :) soo much nicer and more in mood for a player
|
||||
FloatingTextStringOnCreature(sDesc, oPC, FALSE);
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
void main()
|
||||
{
|
||||
ab_Trig_Description_FireOnceOnly();
|
||||
}
|
||||
|
BIN
gamma_age_v2/adventurers_inn.are
Normal file
BIN
gamma_age_v2/adventurers_inn.are
Normal file
Binary file not shown.
BIN
gamma_age_v2/adventurers_inn.gic
Normal file
BIN
gamma_age_v2/adventurers_inn.gic
Normal file
Binary file not shown.
BIN
gamma_age_v2/adventurers_inn.git
Normal file
BIN
gamma_age_v2/adventurers_inn.git
Normal file
Binary file not shown.
BIN
gamma_age_v2/albilope.utc
Normal file
BIN
gamma_age_v2/albilope.utc
Normal file
Binary file not shown.
BIN
gamma_age_v2/albilope001.utc
Normal file
BIN
gamma_age_v2/albilope001.utc
Normal file
Binary file not shown.
BIN
gamma_age_v2/albilopegore.uti
Normal file
BIN
gamma_age_v2/albilopegore.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/albilopehide.uti
Normal file
BIN
gamma_age_v2/albilopehide.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/android.utc
Normal file
BIN
gamma_age_v2/android.utc
Normal file
Binary file not shown.
BIN
gamma_age_v2/android001.utc
Normal file
BIN
gamma_age_v2/android001.utc
Normal file
Binary file not shown.
BIN
gamma_age_v2/android002.utc
Normal file
BIN
gamma_age_v2/android002.utc
Normal file
Binary file not shown.
BIN
gamma_age_v2/android003.utc
Normal file
BIN
gamma_age_v2/android003.utc
Normal file
Binary file not shown.
BIN
gamma_age_v2/androidproperti.uti
Normal file
BIN
gamma_age_v2/androidproperti.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/ark.utc
Normal file
BIN
gamma_age_v2/ark.utc
Normal file
Binary file not shown.
BIN
gamma_age_v2/armyofthedeep.uti
Normal file
BIN
gamma_age_v2/armyofthedeep.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/arn.utc
Normal file
BIN
gamma_age_v2/arn.utc
Normal file
Binary file not shown.
BIN
gamma_age_v2/arnhide.uti
Normal file
BIN
gamma_age_v2/arnhide.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/array_example.ncs
Normal file
BIN
gamma_age_v2/array_example.ncs
Normal file
Binary file not shown.
143
gamma_age_v2/array_example.nss
Normal file
143
gamma_age_v2/array_example.nss
Normal file
@ -0,0 +1,143 @@
|
||||
//#include "inc_array"
|
||||
#include "nwnx_time"
|
||||
|
||||
// nwnx_data also includes inc_array, so don't double dip.
|
||||
#include "nwnx_data"
|
||||
|
||||
void Log(string msg)
|
||||
{
|
||||
WriteTimestampedLogEntry(msg);
|
||||
}
|
||||
|
||||
void TestArrayOnModule()
|
||||
{
|
||||
|
||||
string array = "test";
|
||||
|
||||
// By default, temporary arrays are created on the module.
|
||||
Array_PushBack_Str(array, "BItem1");
|
||||
Array_PushBack_Str(array, "AItem2");
|
||||
Array_PushBack_Str(array, "AItem3");
|
||||
Array_PushBack_Str(array, "BItem2");
|
||||
Array_Debug_Dump(array, "After first load");
|
||||
|
||||
int foo = Array_Find_Str(array, "AItem3");
|
||||
Log("Found element AItem3 at index = " + IntToString(foo));
|
||||
|
||||
Array_Set_Str(array, 2, "Suck it up...");
|
||||
Array_Debug_Dump(array, "After set 2 = 'Suck it up...'");
|
||||
|
||||
Array_Erase(array, 1);
|
||||
Array_Debug_Dump(array, "After delete 1");
|
||||
|
||||
Array_PushBack_Str(array, "MItem1");
|
||||
Array_PushBack_Str(array, "QItem2");
|
||||
Array_PushBack_Str(array, "NItem3");
|
||||
Array_PushBack_Str(array, "KItem2");
|
||||
|
||||
Array_Debug_Dump(array, "After add more");
|
||||
Array_SortAscending(array);
|
||||
|
||||
Array_Debug_Dump(array, "After sort");
|
||||
|
||||
Array_Shuffle(array);
|
||||
Array_Debug_Dump(array, "After shuffle");
|
||||
|
||||
Log( (Array_Contains_Str(array, "NItem3")) ? "Passed.. found it" : "Failed.. should have found it" );
|
||||
Log( (Array_Contains_Str(array, "KItem2")) ? "Passed.. found it" : "Failed.. should have found it" );
|
||||
Log( (Array_Contains_Str(array, "xxxxxx")) ? "Failed.. not found" : "Passed.. should not exist" );
|
||||
|
||||
Array_Clear(array);
|
||||
// Load up the array with 100 entries
|
||||
int i;
|
||||
|
||||
struct NWNX_Time_HighResTimestamp b;
|
||||
b = NWNX_Time_GetHighResTimeStamp();
|
||||
Log("Start Time: " + IntToString(b.seconds) + "." + IntToString(b.microseconds));
|
||||
for (i=0; i<1000; i++)
|
||||
{
|
||||
Array_PushBack_Str(array, IntToString(d100()) + " xxx " + IntToString(i));
|
||||
}
|
||||
b = NWNX_Time_GetHighResTimeStamp();
|
||||
Log("Loaded 1000: " + IntToString(b.seconds) + "." + IntToString(b.microseconds));
|
||||
Array_Shuffle(array);
|
||||
b = NWNX_Time_GetHighResTimeStamp();
|
||||
Log("Shuffled 1000: " + IntToString(b.seconds) + "." + IntToString(b.microseconds));
|
||||
for (i=5; i<995; i++)
|
||||
{
|
||||
// Delete the third entry a bunch of times
|
||||
Array_Erase(array, 3);
|
||||
}
|
||||
b = NWNX_Time_GetHighResTimeStamp();
|
||||
Log("Delete ~990: " + IntToString(b.seconds) + "." + IntToString(b.microseconds));
|
||||
Array_Debug_Dump(array, "After mass insert/delete");
|
||||
|
||||
}
|
||||
|
||||
void TestArrayOnChicken()
|
||||
{
|
||||
string array="chicken";
|
||||
// Let's create an array "on" our favorite creature: the deadly nw_chicken
|
||||
// Note - arrays aren't really attached to the item, but the module, and they
|
||||
// are tagged with the objects string representation.
|
||||
object oCreature = CreateObject(OBJECT_TYPE_CREATURE, "nw_chicken", GetStartingLocation());
|
||||
if (!GetIsObjectValid(oCreature))
|
||||
{
|
||||
Log("NWNX_Creature test: Failed to create creature");
|
||||
return;
|
||||
}
|
||||
|
||||
Array_PushBack_Str(array, "BItem1", oCreature);
|
||||
Array_PushBack_Str(array, "AItem2", oCreature);
|
||||
Array_PushBack_Str(array, "AItem3", oCreature);
|
||||
Array_PushBack_Str(array, "BItem2", oCreature);
|
||||
Array_Debug_Dump(array, "After Chicken array load", oCreature);
|
||||
|
||||
}
|
||||
|
||||
void TestNWNXArray()
|
||||
{
|
||||
Log("");
|
||||
Log("Start NWNX_Data test.");
|
||||
string array = "test2";
|
||||
|
||||
NWNX_Data_Array_PushBack_Str(GetModule(), array, "XItem1");
|
||||
NWNX_Data_Array_PushBack_Str(GetModule(), array, "ZItem2");
|
||||
NWNX_Data_Array_PushBack_Str(GetModule(), array, "ZItem3");
|
||||
NWNX_Data_Array_PushBack_Str(GetModule(), array, "XItem2");
|
||||
Array_Debug_Dump(array, "After first load");
|
||||
|
||||
int foo = NWNX_Data_Array_Find_Str(GetModule(), array, "ZItem3");
|
||||
Log("Found element AItem3 at index = " + IntToString(foo));
|
||||
|
||||
NWNX_Data_Array_Set_Str(GetModule(), array, 2, "Suck it up...");
|
||||
Array_Debug_Dump(array, "After set 2 = 'Suck it up...'");
|
||||
|
||||
NWNX_Data_Array_Erase(NWNX_DATA_TYPE_STRING, GetModule(), array, 1);
|
||||
Array_Debug_Dump(array, "After delete 1");
|
||||
|
||||
NWNX_Data_Array_PushBack_Str(GetModule(), array, "MItem1");
|
||||
NWNX_Data_Array_PushBack_Str(GetModule(), array, "QItem2");
|
||||
NWNX_Data_Array_PushBack_Str(GetModule(), array, "NItem3");
|
||||
NWNX_Data_Array_PushBack_Str(GetModule(), array, "KItem2");
|
||||
|
||||
Array_Debug_Dump(array, "After add more");
|
||||
NWNX_Data_Array_SortAscending(NWNX_DATA_TYPE_STRING, GetModule(), array);
|
||||
|
||||
Array_Debug_Dump(array, "After sort");
|
||||
|
||||
}
|
||||
|
||||
// Uncomment and assign to some event click.
|
||||
/* */
|
||||
void main()
|
||||
{
|
||||
Log("Start");
|
||||
|
||||
TestArrayOnModule();
|
||||
|
||||
TestArrayOnChicken();
|
||||
|
||||
TestNWNXArray();
|
||||
}
|
||||
/* */
|
BIN
gamma_age_v2/ashlw002.uti
Normal file
BIN
gamma_age_v2/ashlw002.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/ashlw003.uti
Normal file
BIN
gamma_age_v2/ashlw003.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/ashto002.uti
Normal file
BIN
gamma_age_v2/ashto002.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/attercop.utc
Normal file
BIN
gamma_age_v2/attercop.utc
Normal file
Binary file not shown.
BIN
gamma_age_v2/attercophide.uti
Normal file
BIN
gamma_age_v2/attercophide.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/autoclose_door.ncs
Normal file
BIN
gamma_age_v2/autoclose_door.ncs
Normal file
Binary file not shown.
7
gamma_age_v2/autoclose_door.nss
Normal file
7
gamma_age_v2/autoclose_door.nss
Normal file
@ -0,0 +1,7 @@
|
||||
void main()
|
||||
{
|
||||
object oDoor = OBJECT_SELF;
|
||||
AssignCommand(oDoor, ActionWait(5.0f));
|
||||
AssignCommand(oDoor, ActionCloseDoor(oDoor));
|
||||
// AssignCommand(oDoor, ActionDoCommand(SetLocked(oDoor, TRUE)));
|
||||
}
|
BIN
gamma_age_v2/badder.utc
Normal file
BIN
gamma_age_v2/badder.utc
Normal file
Binary file not shown.
BIN
gamma_age_v2/badderchainmail.uti
Normal file
BIN
gamma_age_v2/badderchainmail.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/badderhelm.uti
Normal file
BIN
gamma_age_v2/badderhelm.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/badderhelm001.uti
Normal file
BIN
gamma_age_v2/badderhelm001.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/badderhide.uti
Normal file
BIN
gamma_age_v2/badderhide.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/baddershield.uti
Normal file
BIN
gamma_age_v2/baddershield.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/bamutan.utc
Normal file
BIN
gamma_age_v2/bamutan.utc
Normal file
Binary file not shown.
BIN
gamma_age_v2/bamutencarpace.uti
Normal file
BIN
gamma_age_v2/bamutencarpace.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/banded_lg.uti
Normal file
BIN
gamma_age_v2/banded_lg.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/banded_med.uti
Normal file
BIN
gamma_age_v2/banded_med.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/banded_med_a.uti
Normal file
BIN
gamma_age_v2/banded_med_a.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/banded_sm.uti
Normal file
BIN
gamma_age_v2/banded_sm.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/banded_st.uti
Normal file
BIN
gamma_age_v2/banded_st.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/barxyn.utc
Normal file
BIN
gamma_age_v2/barxyn.utc
Normal file
Binary file not shown.
BIN
gamma_age_v2/bench001.utp
Normal file
BIN
gamma_age_v2/bench001.utp
Normal file
Binary file not shown.
BIN
gamma_age_v2/besiepwres.utp
Normal file
BIN
gamma_age_v2/besiepwres.utp
Normal file
Binary file not shown.
BIN
gamma_age_v2/besiewidget.uti
Normal file
BIN
gamma_age_v2/besiewidget.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/bigoon.utc
Normal file
BIN
gamma_age_v2/bigoon.utc
Normal file
Binary file not shown.
BIN
gamma_age_v2/blaash.utc
Normal file
BIN
gamma_age_v2/blaash.utc
Normal file
Binary file not shown.
BIN
gamma_age_v2/blight.utc
Normal file
BIN
gamma_age_v2/blight.utc
Normal file
Binary file not shown.
BIN
gamma_age_v2/blightbite.uti
Normal file
BIN
gamma_age_v2/blightbite.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/blightbuffet.uti
Normal file
BIN
gamma_age_v2/blightbuffet.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/blighthide.uti
Normal file
BIN
gamma_age_v2/blighthide.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/bloodbird.utc
Normal file
BIN
gamma_age_v2/bloodbird.utc
Normal file
Binary file not shown.
BIN
gamma_age_v2/bloodbirdhide.uti
Normal file
BIN
gamma_age_v2/bloodbirdhide.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/bplate_med.uti
Normal file
BIN
gamma_age_v2/bplate_med.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/bplate_med002.uti
Normal file
BIN
gamma_age_v2/bplate_med002.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/brutorz.utc
Normal file
BIN
gamma_age_v2/brutorz.utc
Normal file
Binary file not shown.
BIN
gamma_age_v2/brutorzkick.uti
Normal file
BIN
gamma_age_v2/brutorzkick.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/buggem.utc
Normal file
BIN
gamma_age_v2/buggem.utc
Normal file
Binary file not shown.
BIN
gamma_age_v2/bulo.utc
Normal file
BIN
gamma_age_v2/bulo.utc
Normal file
Binary file not shown.
BIN
gamma_age_v2/bulo001.utc
Normal file
BIN
gamma_age_v2/bulo001.utc
Normal file
Binary file not shown.
BIN
gamma_age_v2/bulohide.uti
Normal file
BIN
gamma_age_v2/bulohide.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/calthen.utc
Normal file
BIN
gamma_age_v2/calthen.utc
Normal file
Binary file not shown.
BIN
gamma_age_v2/calthenbite.uti
Normal file
BIN
gamma_age_v2/calthenbite.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/carrin.utc
Normal file
BIN
gamma_age_v2/carrin.utc
Normal file
Binary file not shown.
BIN
gamma_age_v2/carrinhide.uti
Normal file
BIN
gamma_age_v2/carrinhide.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/carrinstaff.uti
Normal file
BIN
gamma_age_v2/carrinstaff.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/centurionrobot.utc
Normal file
BIN
gamma_age_v2/centurionrobot.utc
Normal file
Binary file not shown.
BIN
gamma_age_v2/chain_sht_lg.uti
Normal file
BIN
gamma_age_v2/chain_sht_lg.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/chain_sht_med.uti
Normal file
BIN
gamma_age_v2/chain_sht_med.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/chain_sht_sm.uti
Normal file
BIN
gamma_age_v2/chain_sht_sm.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/chain_sht_st.uti
Normal file
BIN
gamma_age_v2/chain_sht_st.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/chainmail_lg.uti
Normal file
BIN
gamma_age_v2/chainmail_lg.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/chainmail_med.uti
Normal file
BIN
gamma_age_v2/chainmail_med.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/chainmail_sm.uti
Normal file
BIN
gamma_age_v2/chainmail_sm.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/chainmail_st.uti
Normal file
BIN
gamma_age_v2/chainmail_st.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/chair.uti
Normal file
BIN
gamma_age_v2/chair.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/chair001.utp
Normal file
BIN
gamma_age_v2/chair001.utp
Normal file
Binary file not shown.
BIN
gamma_age_v2/chair1_sit.utp
Normal file
BIN
gamma_age_v2/chair1_sit.utp
Normal file
Binary file not shown.
BIN
gamma_age_v2/chesexpropertie.uti
Normal file
BIN
gamma_age_v2/chesexpropertie.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/chessex.utc
Normal file
BIN
gamma_age_v2/chessex.utc
Normal file
Binary file not shown.
BIN
gamma_age_v2/chest002.utp
Normal file
BIN
gamma_age_v2/chest002.utp
Normal file
Binary file not shown.
BIN
gamma_age_v2/chest004.utp
Normal file
BIN
gamma_age_v2/chest004.utp
Normal file
Binary file not shown.
BIN
gamma_age_v2/civrobotproperti.uti
Normal file
BIN
gamma_age_v2/civrobotproperti.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/comclothes1.uti
Normal file
BIN
gamma_age_v2/comclothes1.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/comclothes10.uti
Normal file
BIN
gamma_age_v2/comclothes10.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/comclothes2.uti
Normal file
BIN
gamma_age_v2/comclothes2.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/comclothes3.uti
Normal file
BIN
gamma_age_v2/comclothes3.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/comclothes4.uti
Normal file
BIN
gamma_age_v2/comclothes4.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/comclothes5.uti
Normal file
BIN
gamma_age_v2/comclothes5.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/comclothes6.uti
Normal file
BIN
gamma_age_v2/comclothes6.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/comclothes7.uti
Normal file
BIN
gamma_age_v2/comclothes7.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/comclothes8.uti
Normal file
BIN
gamma_age_v2/comclothes8.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/comclothes9.uti
Normal file
BIN
gamma_age_v2/comclothes9.uti
Normal file
Binary file not shown.
BIN
gamma_age_v2/commonerspawner.utp
Normal file
BIN
gamma_age_v2/commonerspawner.utp
Normal file
Binary file not shown.
BIN
gamma_age_v2/companionunitrob.utc
Normal file
BIN
gamma_age_v2/companionunitrob.utc
Normal file
Binary file not shown.
BIN
gamma_age_v2/couch001.utp
Normal file
BIN
gamma_age_v2/couch001.utp
Normal file
Binary file not shown.
BIN
gamma_age_v2/creaturepalcus.itp
Normal file
BIN
gamma_age_v2/creaturepalcus.itp
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user