Added mundane store to Mick's

Added mundane store to Mick's.  Full compile.  Updated release archive.
This commit is contained in:
Jaysyn904 2025-03-19 07:45:07 -04:00
parent 7a91d0ba14
commit 8ec4e91ad8
7 changed files with 13527 additions and 9 deletions

View File

@ -337,7 +337,7 @@
},
"Version": {
"type": "dword",
"value": 30
"value": 31
},
"Width": {
"type": "int",

View File

@ -21,6 +21,10 @@
"value": [
{
"__struct_id": 0,
"ActionParams": {
"type": "list",
"value": []
},
"Animation": {
"type": "dword",
"value": 0
@ -50,9 +54,13 @@
"type": "resref",
"value": ""
},
"ConditionParams": {
"type": "list",
"value": []
},
"Index": {
"type": "dword",
"value": 1
"value": 2
},
"IsChild": {
"type": "byte",
@ -65,6 +73,29 @@
"type": "resref",
"value": ""
},
"ConditionParams": {
"type": "list",
"value": []
},
"Index": {
"type": "dword",
"value": 1
},
"IsChild": {
"type": "byte",
"value": 0
}
},
{
"__struct_id": 2,
"Active": {
"type": "resref",
"value": ""
},
"ConditionParams": {
"type": "list",
"value": []
},
"Index": {
"type": "dword",
"value": 0
@ -91,7 +122,7 @@
"Text": {
"type": "cexolocstring",
"value": {
"0": "Hello <FirstName>, would you like to see my wares?"
"0": "Hello, <FirstName>, are you here to see my basic wares or are you looking for something special?"
}
}
}
@ -99,7 +130,7 @@
},
"NumWords": {
"type": "dword",
"value": 12
"value": 34
},
"PreventZoomIn": {
"type": "byte",
@ -110,6 +141,10 @@
"value": [
{
"__struct_id": 0,
"ActionParams": {
"type": "list",
"value": []
},
"Animation": {
"type": "dword",
"value": 0
@ -145,12 +180,16 @@
"Text": {
"type": "cexolocstring",
"value": {
"0": "Nevermind...."
"0": "Not today, thanks."
}
}
},
{
"__struct_id": 1,
"ActionParams": {
"type": "list",
"value": []
},
"Animation": {
"type": "dword",
"value": 0
@ -186,7 +225,52 @@
"Text": {
"type": "cexolocstring",
"value": {
"0": "Yes please!"
"0": "Yes, let me see your special stock."
}
}
},
{
"__struct_id": 2,
"ActionParams": {
"type": "list",
"value": []
},
"Animation": {
"type": "dword",
"value": 0
},
"AnimLoop": {
"type": "byte",
"value": 1
},
"Comment": {
"type": "cexostring",
"value": ""
},
"Delay": {
"type": "dword",
"value": 4294967295
},
"EntriesList": {
"type": "list",
"value": []
},
"Quest": {
"type": "cexostring",
"value": ""
},
"Script": {
"type": "resref",
"value": "at_mick_000"
},
"Sound": {
"type": "resref",
"value": ""
},
"Text": {
"type": "cexolocstring",
"value": {
"0": "Yes, let me see your basic gear."
}
}
}
@ -201,6 +285,10 @@
"type": "resref",
"value": ""
},
"ConditionParams": {
"type": "list",
"value": []
},
"Index": {
"type": "dword",
"value": 0

View File

@ -246,6 +246,13 @@
"type": "cexostring",
"value": ""
}
},
{
"__struct_id": 11,
"Comment": {
"type": "cexostring",
"value": "Chapter 1"
}
}
]
},

File diff suppressed because it is too large Load Diff

BIN
_module/ncs/at_mick_000.ncs Normal file

Binary file not shown.

View File

@ -0,0 +1,12 @@
void main()
{
object oPC = GetPCSpeaker();
object oPC1 = GetPCSpeaker();
object oTarget;
oTarget = GetObjectByTag("NW_STOREWEAP001");
OpenStore(oTarget, oPC, 300, 2);
DelayCommand(3.0,PlayVoiceChat(VOICE_CHAT_CHEER,oPC1));
}