generated from Jaysyn/ModuleTemplate
Initial commit
Initial commit
This commit is contained in:
27
_module/nss/opw_conv_favweap.nss
Normal file
27
_module/nss/opw_conv_favweap.nss
Normal file
@@ -0,0 +1,27 @@
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// 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));
|
||||
}
|
||||
Reference in New Issue
Block a user