Initial upload

Initial upload.
This commit is contained in:
Jaysyn904
2023-09-25 21:32:17 -04:00
parent c1b271b363
commit ec287507a1
10074 changed files with 8442145 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
//::///////////////////////////////////////////////
//:: Name: pgs_set_list2
//:: Copyright (c) 2001 Bioware Corp.
//:://////////////////////////////////////////////
/*
Store the current number saved at this loc.
for future use.
*/
//:://////////////////////////////////////////////
//:: Created By: Samius Maximus
//:: Created On:
//:://////////////////////////////////////////////
#include "inc_gsystem"
void main()
{
object oPlayer = GetPCSpeaker();
//--------------------------------------------
//Determine which list was built.
//--------------------------------------------
switch (GetLocalInt (oPlayer, "List_Built"))
{
case 1: /*Guild list - all or faction-based.*/
SetLocalInt (oPlayer, "Temp_Guild_List_Number", GetLocalInt
(oPlayer, "Temp_List_Position2"));
break;
case 2: /*Guild messages.*/
SetLocalInt (oPlayer, "Message_Number", GetLocalInt (oPlayer,
"Temp_List_Position2"));
break;
case 3: /*Guild replies.*/
SetLocalInt (oPlayer, "Reply_Number", GetLocalInt (oPlayer,
"Temp_List_Position2"));
break;
}
}