Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Protection IDs and Combined Services

Joined
Jun 10, 2012
Messages
556
Reaction score
131
Protection IDs
You can use any kind of hexadecimal to decimal converter to get the IDs
Code:
ITEM_PROC_TYPE_NODROP         	= 0x0001
ITEM_PROC_TYPE_NOTHROW2        	= 0x0002
ITEM_PROC_TYPE_NOSELL       	        = 0x0004
ITEM_PROC_TYPE_CASHITEM     	= 0x0008
ITEM_PROC_TYPE_NOTRADE2     	= 0x0010
ITEM_PROC_TYPE_TASKITEM     	= 0x0020
ITEM_PROC_TYPE_BIND2        	        = 0x0040
ITEM_PROC_TYPE_BIND        		= 0x0080
ITEM_PROC_TYPE_GUID        		= 0x0100
ITEM_PROC_TYPE_RECYCLE        	= 0x0200
ITEM_PROC_TYPE_ZONETRADE    	= 0x0400
ITEM_PROC_TYPE_ZONEUSE        	= 0x0800
ITEM_PROC_TYPE_ZONENOUSE     	= 0x1000
ITEM_PROC_TYPE_NOTOTRASH    	= 0X2000
ITEM_PROC_TYPE_LOCK        		= 0x80000000

NPC Combined Services
Code:
Combined Services 1

npc.combined_services & 0x10 		- service_faction
npc.combined_services & 0x20 		- restore_broken
npc.combined_services & 0x40 		- service_mail
npc.combined_services & 0x80 		- service_auction
npc.combined_services & 0x100 		- service_double_exp 
npc.combined_services & 0x200 		- service_hatch_pet
npc.combined_services & 0x400 		- service_recover_pet
npc.combined_services & 0x2000 		- service_cash_trade
npc.combined_services & 0x4000 		- service_storage_mafia
npc.combined_services & 0x8000 		- service_talisman
npc.combined_services & 0x10000  	- battle_field_challenge_service
npc.combined_services & 0x20000  	- battle_field_enter
npc.combined_services & 0x40000   	- battle_field_construct_service
npc.combined_services & 0x80000 	        - pet_service_adopt
npc.combined_services & 0x100000 	- pet_service_free
npc.combined_services & 0x200000 	- pet_service_combine
npc.combined_services & 0x400000 	- pet_service_rename
npc.combined_services & 0x800000 	- service_blood_enchant
npc.combined_services & 0x1000000 	- service_spirit_addon
npc.combined_services & 0x2000000 	- service_spirit_remove
npc.combined_services & 0x4000000 	- service_spirit_charge
npc.combined_services & 0x8000000 	- service_spirit_decompose
npc.combined_services & 0x40000000 	- service_arena_challenge

Code:
Combined Services 2

npc.combined_services2 & 0x0001  	- service_change_style
npc.combined_services2 & 0x0002  	- service_petequip_refine
npc.combined_services2 & 0x0020  	- service_magic_refine
npc.combined_services2 & 0x0040  	- service_magic_restore
npc.combined_services2 & 0x0080  	- service_territory_challenge
npc.combined_services2 & 0x0100  	- service_territory_enter
npc.combined_services2 & 0x0200  	- service_territory_reward
npc.combined_services2 & 0x0400  	- service_charge_telestation
npc.combined_services2 & 0x0800  	- service_repair_damage
npc.combined_services2 & 0x1000  	- service_equipment_upgrade
npc.combined_services2 & 0x2000  	- service_crossservice_in
npc.combined_services2 & 0x4000  	- service_crossservice_out
npc.combined_services2 & 0x10000 	- service_identify_gem_slots
npc.combined_services2 & 0x20000 	- service_rebuild_gem_slots
npc.combined_services2 & 0x40000 	- service_customize_gem_slots
npc.combined_services2 & 0x80000 	- service_embed_gems
npc.combined_services2 & 0x100000 	- service_remove_gems
npc.combined_services2 & 0x200000 	- service_upgrade_gem_level
npc.combined_services2 & 0x400000 	- service_upgrade_gem_quality
npc.combined_services2 & 0x800000 	- service_extract_gem
npc.combined_services2 & 0x1000000 	- service_smelt_gem
npc.combined_services2 & 0x40000000 - service_change_name
npc.combined_services2 & 0x80000000 - service_change_faction_name

Code:
Combined Services 3

npc.combined_services3 & 0x00000001 - service_change_faction_name
npc.combined_services3 & 0x00000002 - service_talisman_holylevelup
npc.combined_services3 & 0x00000004 - service_talisman_embedskill
npc.combined_services3 & 0x00000008 - service_talisman_refineskill
npc.combined_services3 & 0x00000010 - service_equipment_upgrade2
npc.combined_services3 & 0x00000020 - service_equipment_slot
npc.combined_services3 & 0x00000040 - service_install_astrology
npc.combined_services3 & 0x00000080 - service_uninstall_astrology
npc.combined_services3 & 0x00000100 - service_astrology_identify
npc.combined_services3 & 0x00000400 - service_crossservice_battle_out
npc.combined_services3 & 0x00000800 - service_crossservice_battle_sign_up
npc.combined_services3 & 0x00001000 - service_kingdom_enter
npc.combined_services3 & 0x00004000 - service_equipment_upgrade
npc.combined_services3 & 0x00010000 - service_produce_jinfashen
npc.combined_services3 & 0x00080000 - service_pet_reborn
 
Back
Top