Added ACP v4.1

Added ACP v4.1.  Full compile.  Updated release archive.
This commit is contained in:
Jaysyn904 2024-09-09 20:16:54 -04:00
parent 5dbc9b3290
commit 66b24792f3
10 changed files with 59 additions and 7 deletions

View File

@ -1180,7 +1180,7 @@
"Mod_Description": {
"type": "cexolocstring",
"value": {
"0": "This is the revised edition of the classic Paths of Ascension module, which is highly customized & more player friendly. This module has loads of customizing options right at your fingertips, color text, chat commands / emotes / appearances / 2 forges, if it can be created it's IN THERE!\n\nPRC'd By: Jaysyn\n\nSpell & Ability expansion by: rafhot\n\n(Requires PRC8 4.1.11+)"
"0": "Paths of Ascension [PRC8-CEP3]\n\nThis is the revised edition of the classic Paths of Ascension module, which is highly customized & more player friendly. This module has loads of customizing options right at your fingertips, color text, chat commands / emotes / appearances / 2 forges, if it can be created it's IN THERE!\n\nPRC'd By: Jaysyn\n\nSpell & Ability expansion by: rafhot\n\n(Requires PRC8 4.1.11+)"
}
},
"Mod_DuskHour": {
@ -1320,6 +1320,13 @@
"value": "prc8_craft2das"
}
},
{
"__struct_id": 8,
"Mod_Hak": {
"type": "cexostring",
"value": "acp_v4.1"
}
},
{
"__struct_id": 8,
"Mod_Hak": {
@ -3153,6 +3160,51 @@
"type": "int",
"value": 1
}
},
{
"__struct_id": 0,
"Name": {
"type": "cexostring",
"value": "PRC_ACP_MANUAL"
},
"Type": {
"type": "dword",
"value": 1
},
"Value": {
"type": "int",
"value": 1
}
},
{
"__struct_id": 0,
"Name": {
"type": "cexostring",
"value": "PRC_ACP_NPC_AUTOMATIC"
},
"Type": {
"type": "dword",
"value": 1
},
"Value": {
"type": "int",
"value": 1
}
},
{
"__struct_id": 0,
"Name": {
"type": "cexostring",
"value": "PRC_XP_USE_SIMPLE_RACIAL_HD"
},
"Type": {
"type": "dword",
"value": 1
},
"Value": {
"type": "int",
"value": 1
}
}
]
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -28,7 +28,7 @@ void main()
{
case 0:
//nNum = d10(4);
nNum = 10 + d10();
nNum = d4() + d10();
sRes = "poa_dretch01";
break;
case 1:
@ -67,7 +67,7 @@ void main()
switch(Random(3))
{
case 0:
nNum = 10 + d10();
nNum = d4() + d10();
sRes = "poa_dretch01";
break;
case 1:
@ -91,7 +91,7 @@ void main()
switch(Random(2))
{
case 0:
nNum = 10 + d10();
nNum = d4() + d10();
sRes = "poa_dretch01";
break;
case 1:
@ -142,7 +142,7 @@ void main()
switch(Random(5))
{
case 0:
nNum = 10 + d10();
nNum = d4() + d10();
sRes = "poa_dretch01";
break;
case 1:
@ -194,7 +194,7 @@ void main()
switch(Random(2))
{
case 0:
nNum = d10(2);
nNum = d4() + d10();
sRes = "poa_dretch01";
break;
case 1:
@ -222,4 +222,4 @@ void main()
//ApplyEffectAtLocation(DURATION_TYPE_TEMPORARY, eSummon, RndLoc(GetSpellTargetLocation(),5,DIMENSION_HEMISPHERE), HoursToSeconds(24));
}
}
}
}