28 lines
812 B
Plaintext
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));
|
||
|
}
|