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!

[Help] Tradeable Items / Enchantable Items / PET Upgrade

Newbie Spellweaver
Joined
Mar 22, 2016
Messages
23
Reaction score
0
Hello Guys i need Help For this Please ---

*How i can let the item be tradeble or Not Tradeble its from ti_iteminfo ItemAtt But what is the code?
*How i can Make the Item Weapon or Armor to be Enable to Enchant and to make unEnable to enchant.
*The PET V2 Card its not working when i try to Upgrade my normal pet even pet from v2 to v3 the V3 PET Upgrade card not working. how can i solved? i add it in item mix but still


Please Help me with all that , Thank you Very much.
 
Last edited by a moderator:
Experienced Elementalist
Joined
Jun 29, 2010
Messages
216
Reaction score
71
Re: Mix ~

Hello Guys i need Help For this Please ---

*How i can let the item be tradeble or Not Tradeble its from ti_iteminfo ItemAtt But what is the code?
Code:
// ¾ÆÀÌÅÛÀÇ ¼Ó¼º, ITEM_ATTR_XXX
#define ITEM_ATTR_AUTO_PICK_UP			0x00000001		// 1
#define ITEM_ATTR_NO_TRANSFER			0x00000002		// 2
#define ITEM_ATTR_QUEST_ITEM			0x00000004		// 4
#define ITEM_ATTR_TIME_LIMITE			0x00000008		// 8
#define ITEM_ATTR_KILL_MARK_ITEM		0x00000010		// 16
#define ITEM_ATTR_SKILL_SUPPORT_ITEM	0x00000020		// 32
#define ITEM_ATTR_DELETED_TIME_LIMITE	0x00000040		// 64
#define ITEM_ATTR_ACCOUNT_POSSESSION	0x00000080		// 128
#define ITEM_ATTR_ARENA_ITEM					0x00000100		// 256
#define ITEM_ATTR_SUPER_GAMBLE_ITEM				0x00000200		// 512
#define	ITEM_ATTR_PACKAGE_ITEM					0x00000400		// 1024
#define	ITEM_ATTR_FOR_ONLY_GAME_MASTER			0x00000800		// 2048
#define ITEM_ATTR_UNIQUE_ITEM					0x00001000		// 4096
#define ITEM_ATTR_BAZAAR_ITEM					0x00002000		// 8192
#define ITEM_ATTR_LEGEND_ITEM					0x00004000		// 16384
#define ITEM_ATTR_FORBID_ARENA_COPY_ITEM		0x00008000		// 32768
#define ITEM_ATTR_CASH_ITEM						0x00010000		// 65536
#define ITEM_ATTR_CASH_ITEM_PREMIUM_CARD		0x00020000		// 131072
#define ITEM_ATTR_LUCKY_ITEM					0x00040000		// 262144
#define ITEM_ATTR_DELETED_TIME_LIMITE_AFTER_USED	0x00080000		// 524288
#define ITEM_ATTR_MISSION_MASTER				0x00100000		// 1048576
#define ITEM_ATTR_ROBOT_ARMOR					0x00200000		// 2097152
#define ITEM_ATTR_CANNOT_USE_INFINITY			0x00400000		// 4194304
#define ITEM_ATTR_ONLY_USE_INFINITY				0x00800000		// 8388608
#define ITEM_ATTR_CHECK_SKILL_RESISTANCE_STATE	0x01000000		// 16777216
#define ITEM_ATTR_NOT_STORE_SAVE				0x02000000		// 33554432
#define ITEM_ATTR_WAREHOUSE_SHARE_BANNED		0x04000000		// 67108864
#define ITEM_ATTR_HYPER_GAMBLE_ITEM				0x08000000		// 134217728
All this information are in source code, you must search for it...
*The PET V2 Card its not working when i try to Upgrade my normal pet even pet from v2 to v3 the V3 PET Upgrade card not working. how can i solved? i add it in item mix but still


Please Help me with all that , Thank you Very much.

In my mind, normal pet cannot be changed, you must had an evolution pet type, check pet table for it.
 
Upvote 0
Newbie Spellweaver
Joined
Mar 22, 2016
Messages
23
Reaction score
0
Re: Mix ~

i have Evolution pet type and not work if its about pet or other item how i can make the upgrade card work?

and btw i didint get anything from that table now lets say 0 will let the item trade maybe , what about if want it to be Enchant also?
or only enchant with no trade or only trade with no Enchant , it should be 3 code in itematt.
 
Upvote 0
[emoji848]
Legend
Joined
Dec 3, 2011
Messages
2,232
Reaction score
1,518
Re: Mix ~

Let me introduce you to
 
Upvote 0
Back
Top