Initial upload. PRC8 has been added. Module compiles, PRC's default AI & treasure scripts have been integrated. Started work on top hak for SLA / Ability / Scripting modifications.
33 lines
934 B
Plaintext
33 lines
934 B
Plaintext
|
|
#include "prc_x2_craft"
|
|
void main()
|
|
{
|
|
|
|
StoreCameraFacing();
|
|
|
|
object oPC = GetPCSpeaker();
|
|
|
|
// * Make the camera float near the PC
|
|
float fFacing = GetFacing(oPC) + 180.0;
|
|
fFacing -= 90.0;
|
|
if (fFacing > 359.0)
|
|
{
|
|
fFacing -=359.0;
|
|
}
|
|
SetCameraFacing(fFacing, 3.5f, 75.0,CAMERA_TRANSITION_TYPE_FAST ) ;
|
|
CISetCurrentModMode(GetPCSpeaker(),X2_CI_MODMODE_WEAPON );
|
|
SetCustomToken(X2_CI_MODIFYARMOR_GP_CTOKENBASE,"0");
|
|
SetCustomToken(X2_CI_MODIFYARMOR_GP_CTOKENBASE+1,"0");
|
|
|
|
object oItem = GetItemInSlot(INVENTORY_SLOT_RIGHTHAND, GetPCSpeaker());
|
|
object oBackup = CopyItem(oItem,IPGetIPWorkContainer());
|
|
CISetCurrentModBackup(oPC, oBackup);
|
|
CISetCurrentModItem(oPC, oItem);
|
|
|
|
//* Immobilize player while crafting
|
|
effect eImmob = EffectCutsceneImmobilize();
|
|
eImmob = ExtraordinaryEffect(eImmob);
|
|
ApplyEffectToObject(DURATION_TYPE_PERMANENT,eImmob,oPC);
|
|
|
|
}
|