Jump to content
  • 0
Sign in to follow this  
ThyroDree

VIP NPC

Question

2 answers to this question

Recommended Posts

  • 0

The most common way : 

 

prontera,150,150,0	script	Sample	123,{	if ( #vip < gettimetick(2) ) {		mes "You are not a vip anymore";		close;	}	specialeffect2 EF_HEAL2; percentheal 100,100;	specialeffect2 EF_INCAGILITY; sc_start SC_INC_AGI,240000,10;	specialeffect2 EF_BLESSING; sc_start SC_BLESSING,240000,10;	switch ( BaseJob ) {		case Job_Alchemist: .@spirit = 445; break;		case Job_Monk: .@spirit = 447; break;		case Job_Star_Gladiator: .@spirit = 448; break;		case Job_Sage: .@spirit = 449; break;		case Job_Crusader: .@spirit = 450; break;		case Job_SuperNovice: .@spirit = 451; break;		case Job_Knight: .@spirit = 452; break;		case Job_Wizard: .@spirit = 453; break;		case Job_Priest: .@spirit = 454; break;		case Job_Bard: case Job_Dancer: .@spirit = 455; break;		case Job_Rogue: .@spirit = 456; break;		case Job_Assassin: .@spirit = 457; break;		case Job_Blacksmith: .@spirit = 458; break;		case Job_Hunter: .@spirit = 460; break;		case Job_Soul_Linker: .@spirit = 461; break;		default: if ( Upper == 1 && BaseLevel < 70 )					.@spirit = 494;	}	if ( .@spirit ) {		sc_start4 SC_SOULLINK, 360000, 5, .@spirit,0,0;		skilleffect .@spirit, 5;	}	close;}

Set players account into vip by using : 

#vip = gettimetick(2) + <duration in seconds>;

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.