Initial Upload
Initial Upload
This commit is contained in:
35
_module/nss/x2_im_start_w.nss
Normal file
35
_module/nss/x2_im_start_w.nss
Normal file
@@ -0,0 +1,35 @@
|
||||
#include "x2_inc_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);
|
||||
|
||||
// Seta variavel persistente identificando que o jogador estava fazendo Crafting.
|
||||
SetCampaignInt("Hermes", "WAS_CRAFTING", TRUE, oPC);
|
||||
string sObjectTag = GetTag(oItem);
|
||||
SetCampaignString("Hermes", "CRAFT_OBJECT", sObjectTag, oPC);
|
||||
}
|
||||
Reference in New Issue
Block a user