Jump to content
Search In
  • More options...
Find results that contain...
Find results in...
  • Need help?

    Create a topic in the appropriate section
    Don't write everything in the chat!
  • Take a look at the marketplace

    There you can buy
    everything related to game servers
  • Don't want a ban?

    Please read our rules
    Don't disturb the order!
  • Sell or buy?

    Use services of the guarantor
    We will make your deal safe
  • 0
Sign in to follow this  
koder

Как мне разблокировать слот который был заблокирован с предметом

Здравствуйте. Я делаю повязку которая при её закреплении будет блокировать её снятие, блокировку слота я делал через

GetGame().GetCallQueue(CALL_CATEGORY_SYSTEM).Call(item_bs.LockToParent);	

Но при удалении повязки из слота, в слот ничего другого больше нельзя повесить, не могу понять как его разблокировать 
Armband.c

modded class PlayerBase extends ManBase
{
	override void EEItemAttached(EntityAI item, string slot_name)
	{
			super.EEItemAttached(item, slot_name);
		
			ItemBase item_bs = ItemBase.Cast(item);
			if (item_bs.CanLockIfAttachToPlayer())
			{
				GetGame().GetCallQueue(CALL_CATEGORY_SYSTEM).Call(item_bs.LockToParent);		
			};
	};
};
class RRRR_Armband_Black extends Clothing{
	override bool CanLockIfAttachToPlayer()
	{
		return true;
	}
};

Удаляю повязку через 

string current_attachment_type;
EntityAI item1 = action_data.m_Player.GetInventory().FindAttachment(InventorySlots.ARMBAND);
current_attachment_type = item1.GetType();		
GetGame().ObjectDelete(item1);

 

Share this post


Link to post
Share on other sites

1 answer to this question

Recommended Posts

  • 0
ItemBase item1_bs = ItemBase.Cast(item1);
item1_bs.UnlockFromParent();
GetGame().ObjectDelete(item1);

в теории так перед удалением, ну если верить коду что вы делаете

Share this post


Link to post
Share on other sites



Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you automaticly agree to our Guidelines and Privacy Policy.
We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.