Alangara_PRC8/_module/nss/sf_sockets.nss
Jaysyn904 86feb9ca6f Initial commit
Initial commit.
2024-06-05 21:21:06 -04:00

53 lines
1.4 KiB
Plaintext

//::///////////////////////////////////////////////
//:: Scarface's Socketed Items
//:: V2.5
//:: sf_sockets
//:://////////////////////////////////////////////
/*
Written By Scarface
*/
//////////////////////////////////////////////////
#include "x2_inc_switches"
#include "sf_sockets_inc"
void main() {
if (GetUserDefinedItemEventNumber() != X2_ITEM_EVENT_ACTIVATE) { return; }
object oPC = GetItemActivator();
object oTarget = GetItemActivatedTarget();
object oActivated = GetItemActivated();
if (GetIsInCombat(oPC)) {
FloatingTextStringOnCreature("You can not use this item while in combat.", oPC);
return;
}
if (SF_GetIsItemActivatedValid(oActivated)) {
SF_GetHasSockets(oPC, oActivated);
return;
}
if (GetItemPossessor(oTarget) != oPC) {
FloatingTextStringOnCreature("The targeted item is not in your possession.", oPC);
return;
}
// this is removed so that items without the tag "sf_sockets" also can be socketed aslong as they have the required variables.
// if (GetTag(oTarget) != "sf_sockets") {
//
// FloatingTextStringOnCreature("The targeted item can not be socketed.", oPC);
// return;
// }
if (!SF_GetIsItemActivatedValid(oTarget)) {
FloatingTextStringOnCreature("Invalid target.", oPC);
return;
}
SF_SocketGemToItem(oPC, oTarget, oActivated);
}