Jump to content
  • 0

request Item that can make a character GM level 1?


Question

Posted

Is it possible to make an item that makes an account to upgrade GM level?

for example a normal player talked to the npc and agreed to received this item to be a Super Player, (GM level 0 to 1)
and then makes this item account bound to the account?

i like to create an npc for beta testers that gives them an item and making their account to higher than a normal account, so they can use @item,@job etc... but restricting them to trade/drop/storage...

tnx in advance!  /ok

3 answers to this question

Recommended Posts

Posted

It's very possible. The @adjgroup commands temporarily change your GM group, and SQL can permanently change it (it takes effect once you log off). So an example item script would be...

	atcommand "@adjgroup 1";
	query_sql("UPDATE `login` SET `group_id` = 1 WHERE `account_id` = "+getcharid(3));
	message strcharinfo(0),"You are now GM Level 1.";
	end;
And using "0" instead would reverse the process.

Binding items can be done through db/(pre-)re/item_trade.txt.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...