Rune_PRC8/_module/nss/opw_conv_favweap.nss
Jaysyn904 d1c309ae63 Initial commit
Initial commit
2024-09-13 09:10:39 -04:00

28 lines
812 B
Plaintext

////////////////////////////////////////////////////////////////////////////////
//
// Olander's Player Stat's
// opw_conv_favweap
// By:Don Anderson
// dandersonru@msn.com
//
// This is called from the Rest Menu
//
////////////////////////////////////////////////////////////////////////////////
#include "nbde_inc"
#include "opw_inc_pstat"
void main()
{
object oPC = GetPCSpeaker();
//Name of Player Character
string sPC = GetName(oPC);
DelayCommand(1.0,FloatingTextStringOnCreature(BLUISHG+"Stats for "+BLUISHR+sPC,oPC,FALSE));
DelayCommand(1.5,FloatingTextStringOnCreature("",oPC,FALSE));
//Player Character Favorite Weapon
string sFavWeap = GetFavoriteWeapon(oPC);
DelayCommand(2.0,FloatingTextStringOnCreature(GRAY+"Favorite Weapon: "+WHITE+sFavWeap,oPC,FALSE));
}