Jump to content
  • 0

Beginer Zone Warper


revivalro

Question


  • Group:  Members
  • Topic Count:  6
  • Topics Per Day:  0.00
  • Content Count:  12
  • Reputation:   0
  • Joined:  07/17/12
  • Last Seen:  

Can someone make a warper that only warps normal baby and super novices and no other classes?

Link to comment
Share on other sites

3 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  8
  • Topics Per Day:  0.00
  • Content Count:  50
  • Reputation:   4
  • Joined:  06/23/12
  • Last Seen:  

Hi, made this you might want to check it out :)
 

prontera,155,178,4    script    Novice Warper    723,{
 
    if( BaseLevel > 1 || JobLevel > 1 || Class != Job_Novice )
    {
        mes "[^FFA500Newbie NPC^000000]";
        mes "I am sorry, you do not meet all requeriments.";
        close;
    }
 
    warp "prontera",155,168;
    end;
} 

 

 
*if just change the warp points and the npc name.
cheers!

Edited by vhan48
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  6
  • Topics Per Day:  0.00
  • Content Count:  12
  • Reputation:   0
  • Joined:  07/17/12
  • Last Seen:  

THX ALOT!! ill check this out 

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  13
  • Topics Per Day:  0.00
  • Content Count:  66
  • Reputation:   1
  • Joined:  06/06/12
  • Last Seen:  

//Entering Beginner Zone
caspen,156,209,5	script	Beginner Zone	877,{

	mes "[ ^ffaa7fBeginner Zone^000000 ]";
	mes "Would you like to go to the Beginner Zone?";
	if(select("Yes [^FF0000" + getmapusers("force_1-1.gat") + "^000000]", "No") == 1) goto B_room;
	close;

B_room:
	if(class == 0 || class == 4001 || class == 4023) {
		sc_end SC_ALL;
		sc_start SC_INCREASEAGI,500000,10;
		sc_start SC_KYRIE,500000,10;
		sc_start SC_BLESSING,500000,10;
		sc_start SC_IMPOSITIO,500000,3;
		sc_start SC_ASSUMPTIO,500000,10;
		percentheal 100,100;
	warp "force_1-1" ,25,24;
	} 
	else {
	mes "Only Novice and High Novice Can Enter This Room";
	}
	close;
 
}

//The Exit

force_1-1.gat,25,26,3	script	Exit	729,{
	mes "[ ^ffaa7fBeginner Zone^000000 ]";
	mes "Do You want to leave?";
	next;
	menu "Yes",ok,"No",fine;
ok:
	warp "prontera" ,156,191;
	close;
fine:
	mes "Then you can still leveling in this room";
	close;
	
}
force_1-1,9,9,42,42	monster	Poring	1002,100,5000,5000;
force_1-1,9,9,42,42	monster	Drops	1113,100,5000,5000;
force_1-1,9,9,42,42	monster	Poporing	1031,100,5000,5000;

//mapflag
force_1-1	mapflag	nowarp
force_1-1	mapflag	nowarpto
force_1-1	mapflag	noteleport
force_1-1	mapflag	nomobloot
 

 

 

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...