From the GM command, I make GM avatar but when I try to pick item, it says "The Selected item cannot be Obtained"
Printable View
From the GM command, I make GM avatar but when I try to pick item, it says "The Selected item cannot be Obtained"
you need to make it pickable @_RefObCommon
the itemid is something with 3800
As stated above - however,I suggest that after picking the item up you disable the ability to pick it again.
Put the code in sql..
ITEM_ETC_AVATAR_M_GM_UNIFORM " MALE "
ITEM_ETC_AVATAR_W_GM_UNIFORM " FEMALE "
Code:USE SRO_VT_SHARD
--Usage:
--exec _ADD_ITEM_EXTERN 'CharName','ItemsCodeName',Count,OptLvl
declare @CharName varchar(64)
set @CharName = 'CHARACTER NAME'
exec _ADD_ITEM_EXTERN @CharName,'ITEM_ETC_AVATAR_M_GM_UNIFORM',1,1
Ty but I search all the RefObjCommon tables and I couldn't find any word "GM"
Just use the query that was posted above your post.
Put the code in sql..
ITEM_ETC_AVATAR_M_GM_UNIFORM " MALE "
ITEM_ETC_AVATAR_W_GM_UNIFORM " FEMALE "
Code:USE SRO_VT_SHARD
--Usage:
--exec _ADD_ITEM_EXTERN 'CharName','ItemsCodeName',Count,OptLvl
declare @CharName varchar(64)
set @CharName = 'CHARACTER NAME'
exec _ADD_ITEM_EXTERN @CharName,'ITEM_ETC_AVATAR_M_GM_UNIFORM',1,1