Jump to content
  • 0

Lvl 99 Rewarder for new character


Nero

Question


  • Group:  Members
  • Topic Count:  74
  • Topics Per Day:  0.02
  • Content Count:  194
  • Reputation:   2
  • Joined:  12/18/11
  • Last Seen:  

Requesting for Lvl 99 Rewarder for new character

Thanks a lot

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

  • Group:  Members
  • Topic Count:  51
  • Topics Per Day:  0.01
  • Content Count:  452
  • Reputation:   33
  • Joined:  12/18/14
  • Last Seen:  

More info? o_o there's tons of race to 99 scripts in the forums, try using the search function.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  74
  • Topics Per Day:  0.02
  • Content Count:  194
  • Reputation:   2
  • Joined:  12/18/11
  • Last Seen:  

Yes i've tried but i cant see with the script function of New characters, not for new server.

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  35
  • Topics Per Day:  0.01
  • Content Count:  111
  • Reputation:   2
  • Joined:  01/02/14
  • Last Seen:  

I'll share this script that I found before. Still being used in my server.

Just change the config to your server's configuration and reward that you want to give them.

-	script	max_lv	99,{
 
	// Configuration
	OnInit:
		.max_base = 175;
		.max_job = 60;
		.item_id = 19721;
		.amount = 1;
		end;
		
	// Script
	OnPCBaseLvUpEvent:
	OnPCJobLvUpEvent:
		// Determine if Base Level and Job Level are max
		if ( #helm == 0 && BaseLevel == .max_base && JobLevel == .max_job) {
			// Receive reward
			dispbottom "You reached 175/60! Here's Your Reward.";
			getitembound .item_id, .amount,Bound_Account;
			set #helm,1;
		}
		end;
 
}

Change this

		if ( #helm == 0 && BaseLevel == .max_base && JobLevel == .max_job) {
			// Receive reward
			dispbottom "You reached 175/60! Here's Your Reward.";
			getitembound .item_id, .amount,Bound_Account;
			set #helm,1;

to this

		if ( BaseLevel == .max_base && JobLevel == .max_job) {
			// Receive reward
			dispbottom "You reached 99/70! Here's Your Reward.";
			getitembound .item_id, .amount,Bound_Account;
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  25
  • Topics Per Day:  0.01
  • Content Count:  56
  • Reputation:   0
  • Joined:  02/19/16
  • Last Seen:  

 

prontera,139,182,5 script Lv99 Reward 81,{

.@name$ ="[^FF000099 Rewards^000000]";
 
mes .@name$;
mes "Hello "+strcharinfo(0)+" do you want to have Power of Thor as a reward?";
mes " ";
mes "You must be a Trans Job with Base Level 99 and Job Level 70 to get the reward";
next;
mes .@name$;
menu "Yes, Please",Reward,"No, I changed my mind",No;
 
POT:
if( JobLevel == 70 && BaseLevel == 99 ) {
if(countitem(5495)<1)
getitem 5495,1; //Power of Thor
next;
mes .@name$;
mes "Thank you";
close;
}

 

try this just change the item..

Edited by WorldSeed
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...