Initial upload.

Adding base PRC 4.19a files to repository.
This commit is contained in:
Jaysyn904
2022-10-07 13:51:24 -04:00
parent 646eb01834
commit 1662218bb4
22441 changed files with 1274376 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
//::///////////////////////////////////////////////
//:: Spellscript: Inform user of having triggered a BioBug
//:: prc_radialbug
//::///////////////////////////////////////////////
/**
Sends a message to the user of whatever triggered
this script being executed. It is assigned
as the ImpactScript of subradial feat master
entries. There is a bug where the game attempts
to use the master entry instead of selected subradial.
This script is meant to inform the user of the fact
and of the workaround.
@author Ornedan
@date Created - 2006.05.14
*/
//:://////////////////////////////////////////////
//:://////////////////////////////////////////////
void main()
{
SendMessageToPCByStrRef(OBJECT_SELF, 16825845);
//You just stumbled across a BioBug. Attempting to use this feat/power/spell when you open the radial on your character does not work.
//Workarounds: Either place it on your quickbar or just open the radial on whatever you intend to target. Note that the latter option will obviously not work if you need to target yourself.
}