Jump to content
  • 0

freebies job class


Blue Jem

Question


  • Group:  Members
  • Topic Count:  151
  • Topics Per Day:  0.04
  • Content Count:  393
  • Reputation:   3
  • Joined:  09/16/13
  • Last Seen:  

lets say already im  sura job i wanna get my freebies to npc i get the poring coins 10pcs

 

NPC get item

•Swordman Class Get TCG 10pcs

•Acolyte Class Get Poring Coins 10pcs

•Archer Classs Get items

•Etc.....

 

Example

 

Swordman class Get item Str items and foods

Merchant Class Get item and foods

like that



up



up

Edited by Blue Jem
Link to comment
Share on other sites

1 answer to this question

Recommended Posts


  • Group:  Developer
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  2407
  • Reputation:   613
  • Joined:  07/05/12
  • Last Seen:  

Give items following the base class (baseclass acolyte = sura, priest, high priest etc...)

prontera,150,150,5	script	iunhouihuo	456,{
	if( freebie_item ) end;

	switch( BaseClass ) {
		case Job_Novice:	setarray .@item,501,2,503,4;	break;
		case Job_Swordman:	setarray .@item,501,2,503,4;	break;
		case Job_Mage:		setarray .@item,501,2,503,4;	break;
		case Job_Archer:	setarray .@item,501,2,503,4;	break;
		case Job_Acolyte:	setarray .@item,501,2,503,4;	break;
		case Job_Merchant:	setarray .@item,501,2,503,4;	break;
		case Job_Thief:		setarray .@item,501,2,503,4;	break;
		case Job_SuperNovice:	setarray .@item,501,2,503,4;	break;
		case Job_Gunslinger:	setarray .@item,501,2,503,4;	break;
		case Job_Ninja:		setarray .@item,501,2,503,4;	break;
		default:
	}
	.@size = getarraysize( .@item );
	for ( .@i = 0; .@i < .@size; .@i += 2 )
		getitem .@item[.@i], .@item[.@i+1];
	freebie_item = 1;
	end;
}
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...