Added missing NPC again, and modified trigger script

This commit is contained in:
EpicValor 2024-04-06 19:26:35 -05:00
parent d49d0d353e
commit 89ddea5c77
6 changed files with 26 additions and 56 deletions

View File

@ -41488,7 +41488,7 @@
}, },
"Version": { "Version": {
"type": "dword", "type": "dword",
"value": 28 "value": 29
}, },
"Width": { "Width": {
"type": "int", "type": "int",

View File

@ -53670,28 +53670,6 @@
"type": "short", "type": "short",
"value": 2 "value": 2
} }
},
{
"__struct_id": 2,
"Class": {
"type": "int",
"value": 51
},
"ClassLevel": {
"type": "short",
"value": 1
}
},
{
"__struct_id": 2,
"Class": {
"type": "int",
"value": 51
},
"ClassLevel": {
"type": "short",
"value": 1
}
} }
] ]
}, },
@ -54021,6 +53999,13 @@
"FeatList": { "FeatList": {
"type": "list", "type": "list",
"value": [ "value": [
{
"__struct_id": 1,
"Feat": {
"type": "word",
"value": 14576
}
},
{ {
"__struct_id": 1, "__struct_id": 1,
"Feat": { "Feat": {
@ -54119,7 +54104,7 @@
}, },
"MaxHitPoints": { "MaxHitPoints": {
"type": "short", "type": "short",
"value": 21 "value": 13
}, },
"NaturalAC": { "NaturalAC": {
"type": "byte", "type": "byte",
@ -54509,7 +54494,7 @@
}, },
"StartingPackage": { "StartingPackage": {
"type": "byte", "type": "byte",
"value": 0 "value": 82
}, },
"Str": { "Str": {
"type": "byte", "type": "byte",
@ -54633,7 +54618,7 @@
}, },
"XPosition": { "XPosition": {
"type": "float", "type": "float",
"value": 129.7798461914063 "value": 129.9511413574219
}, },
"YOrientation": { "YOrientation": {
"type": "float", "type": "float",
@ -54641,11 +54626,11 @@
}, },
"YPosition": { "YPosition": {
"type": "float", "type": "float",
"value": 269.6610717773438 "value": 267.5032653808594
}, },
"ZPosition": { "ZPosition": {
"type": "float", "type": "float",
"value": -5.7220458984375e-006 "value": 0.0
} }
} }
] ]
@ -203690,7 +203675,7 @@
}, },
"XPosition": { "XPosition": {
"type": "float", "type": "float",
"value": 129.1087951660156 "value": 137.50341796875
}, },
"YOrientation": { "YOrientation": {
"type": "float", "type": "float",
@ -203698,11 +203683,11 @@
}, },
"YPosition": { "YPosition": {
"type": "float", "type": "float",
"value": 270.1070861816406 "value": 276.7825317382813
}, },
"ZPosition": { "ZPosition": {
"type": "float", "type": "float",
"value": 0.0 "value": 0.1999988555908203
} }
} }
] ]

Binary file not shown.

View File

@ -7,7 +7,7 @@ object oPC = GetEnteringObject();
if (!GetIsPC(oPC)) return; if (!GetIsPC(oPC)) return;
SetLocalInt (oPC, "DynConv_Waiting", 1); DeleteLocalInt (oPC, "DynConv_Waiting");
SetCreatureTailType (CREATURE_TAIL_TYPE_NONE, oPC); SetCreatureTailType (CREATURE_TAIL_TYPE_NONE, oPC);
SetPhenoType (PHENOTYPE_NORMAL, oPC); SetPhenoType (PHENOTYPE_NORMAL, oPC);
SetFootstepType (FOOTSTEP_TYPE_DEFAULT, oPC); SetFootstepType (FOOTSTEP_TYPE_DEFAULT, oPC);

View File

@ -105,28 +105,6 @@
"type": "short", "type": "short",
"value": 2 "value": 2
} }
},
{
"__struct_id": 2,
"Class": {
"type": "int",
"value": 51
},
"ClassLevel": {
"type": "short",
"value": 1
}
},
{
"__struct_id": 2,
"Class": {
"type": "int",
"value": 51
},
"ClassLevel": {
"type": "short",
"value": 1
}
} }
] ]
}, },
@ -205,6 +183,13 @@
"FeatList": { "FeatList": {
"type": "list", "type": "list",
"value": [ "value": [
{
"__struct_id": 1,
"Feat": {
"type": "word",
"value": 14576
}
},
{ {
"__struct_id": 1, "__struct_id": 1,
"Feat": { "Feat": {
@ -303,7 +288,7 @@
}, },
"MaxHitPoints": { "MaxHitPoints": {
"type": "short", "type": "short",
"value": 21 "value": 13
}, },
"NaturalAC": { "NaturalAC": {
"type": "byte", "type": "byte",
@ -697,7 +682,7 @@
}, },
"StartingPackage": { "StartingPackage": {
"type": "byte", "type": "byte",
"value": 0 "value": 82
}, },
"Str": { "Str": {
"type": "byte", "type": "byte",

Binary file not shown.