Jump to content

KingTsunamy

Premium
  • Posts

    97
  • Joined

  • Last visited

  • Feedback

    0%

Posts posted by KingTsunamy

  1. I want to report two thiefs Dalyn (Fenomen) and Miguel (Frontier)
    I sold my serverfiles to  them, everything went well until I got PMs from others that say that them sell my work .I had to reduce the price, and they wanted back the price difference, so it was not enough  that they  sold work they also want  money because they do that .After they received my files  wasn't enought that they  resold my work without my approval, they  withdrawn the  money
     
     
    I have also seen host companies such as Cloud express and  CEHOST that are  selling my serverfile and i never sold to them anything .Also I see that others sell my source but i never sold it.
    • Love 1
  2. Open char_item.cpp
     
    Find  namespace NPartyPickupDistribute
    Add under it this code

    namespace NPartyPickupPermission
    {
    	struct FCompareOwnership
    	{
    		LPITEM item;
    		bool is_allowed = false;
    
    		FCompareOwnership(LPITEM item) 
    			: item(item)
    		{
    		}
    
    		void operator () (LPCHARACTER ch)
    		{
    			if (item->IsOwnership(ch) == true)
    				is_allowed = true;
    		}
    	};
    }
    

    After search else if (!IS_SET(item->GetAntiFlag(), ITEM_ANTIFLAG_GIVE | ITEM_ANTIFLAG_DROP) && GetParty())

    Add under it 

    			bool is_allowed = false;
    			NPartyPickupPermission::FCompareOwnership funcCompareOwnership(item);
    			GetParty()->ForEachOnlineMember(funcCompareOwnership);
    			is_allowed = funcCompareOwnership.is_allowed;
    			if(is_allowed == false)
    			{
    				ChatPacket(CHAT_TYPE_INFO, LC_TEXT("This item is not yours!"));
    				return false;
    			}
    
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / 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.