Changed folder name.
Changed folder name.
This commit is contained in:
16
_module/nss/ispeak.nss
Normal file
16
_module/nss/ispeak.nss
Normal file
@@ -0,0 +1,16 @@
|
||||
void main()
|
||||
{
|
||||
object oPC = GetLastUsedBy();
|
||||
|
||||
int nItems = 0;
|
||||
object oItem = GetFirstItemInInventory(oPC);
|
||||
while (GetIsObjectValid(oItem) == TRUE)
|
||||
{
|
||||
nItems ++;
|
||||
|
||||
oItem = GetNextItemInInventory(oPC);
|
||||
}
|
||||
|
||||
DelayCommand(1.5, AssignCommand(OBJECT_SELF, ActionSpeakString
|
||||
("<c<><63> >You have - " + IntToString(nItems) + " - total Items in your inventory.", TALKVOLUME_TALK)));
|
||||
}
|
Reference in New Issue
Block a user