Initial Upload

Initial Upload
This commit is contained in:
Jaysyn904
2023-09-21 21:20:34 -04:00
parent d3f23f8b3c
commit 94990edc60
5734 changed files with 6324648 additions and 0 deletions

15
_module/nss/pc0.nss Normal file
View File

@@ -0,0 +1,15 @@
void main()
{
SendMessageToPC(OBJECT_SELF, "PC ==> Area");
string sAlignment = "";
object oPCx = GetFirstPC();
object oArea;
int i = 0;
while (OBJECT_INVALID != oPCx){
i++;
oArea = GetArea(oPCx);
SetLocalInt(oPCx, "iNum", i);
SendMessageToPC(OBJECT_SELF,IntToString(i) + ")" + GetName(oPCx) + " ==> " + GetName(oArea));
oPCx = GetNextPC();
}
}