Jump to content
  • 0

Give item to specific account id npc


behemothcze

Question


  • Group:  Members
  • Topic Count:  40
  • Topics Per Day:  0.02
  • Content Count:  102
  • Reputation:   2
  • Joined:  02/24/17
  • Last Seen:  

Can anyone help me or share script npc that gives multiple items to player example 200001 to 200100 

 

Will be use to give item for all players who play in obt any recommendation please advance thankyou

 

 

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  50
  • Topics Per Day:  0.01
  • Content Count:  1702
  • Reputation:   238
  • Joined:  09/05/12
  • Last Seen:  

prontera,150,150,6	script	Sample	100,{
	.@aid = getcharid(3);
	.@allowed = .@aid > 2000000 && .@aid < 2000101 && !#OBTFreebies;
	
	if (.@allowed) {
		getitem 501, 1;
		#OBTFreebies = 1;
	}
	
	end;
}

 

  • Upvote 1
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  18
  • Topics Per Day:  0.00
  • Content Count:  208
  • Reputation:   22
  • Joined:  01/14/13
  • Last Seen:  

make an npc that has variable type.
#variable ,1;
if(#variable==100){
#variable++;
}

like that. only my example.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  40
  • Topics Per Day:  0.02
  • Content Count:  102
  • Reputation:   2
  • Joined:  02/24/17
  • Last Seen:  

On 12/11/2020 at 11:27 PM, Patskie said:

prontera,150,150,6	script	Sample	100,{
	.@aid = getcharid(3);
	.@allowed = .@aid > 2000000 && .@aid < 2000101 && !#OBTFreebies;
	
	if (.@allowed) {
		getitem 501, 1;
		#OBTFreebies = 1;
	}
	
	end;
}

 

its not working also im looking on multiple items sir thanks

Edited by behemothcze
Link to comment
Share on other sites

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.

×
×
  • Create New...