LoT_PRC8/_module/nss/pgs_disp_prank.nss
Jaysyn904 ec287507a1 Initial upload
Initial upload.
2023-09-25 21:32:17 -04:00

28 lines
864 B
Plaintext

//::///////////////////////////////////////////////
//:: Name: pgs_disp_prank
//:: Copyright (c) 2001 Bioware Corp.
//:://////////////////////////////////////////////
/*
Display the player's rank name.
*/
//:://////////////////////////////////////////////
//:: Created By: Samius Maximus
//:: Created On:
//:://////////////////////////////////////////////
#include "inc_gsystem"
int StartingConditional()
{
object oPlayer = GetPCSpeaker();
int iRank = GetLocalInt (oPlayer, "Player_Guild_Rank");
//--------------------------------------------
//Display the player's rank and options.
//--------------------------------------------
SetCustomToken (3013, GetModuleGuildRankName (GetLocalInt (oPlayer,
"Player_Guild_Number"), iRank));
SetCustomToken (3014, GetModuleRankOptions (iRank));
return TRUE; /*Conditional*/
}