Jump to content
  • 0

Is this possible?


Santafe

Question


  • Group:  Members
  • Topic Count:  91
  • Topics Per Day:  0.02
  • Content Count:  325
  • Reputation:   34
  • Joined:  06/01/13
  • Last Seen:  

Hey guyz i donno if im in the right section but i think it is something to do with scripting :I if not im sorry :o,

 

Ok let me start! Well im trying to configure my server in a way that 3rd jobs cant enter a certain map(town actually) and once a trans job converts to a 3rd job he will be automatically warped to a town example map,x,y and also will recieve a certificate of authorization(LOL its just an item xD nothing to do with this.) from the jobchanger. By this ITEM ( say item 1220?) the 3rd job player cant enter prontera( YEa prontera xD)(is this possible? like to restrict warping to town based on an item?

 

Also, Once a trans 1st job turns to his 2nd job(example: i mean from trans thief to assassin cross) he also gets an item say 1221? which causes him to NOT warp to the 3rd job town(like i said before map x,y) i mean hes restricted to go there.(Hope this is do able? could u use something like (checkitem == 1221)? Thnx in advance it Would be SO Great if u help me on this :)

 

P.S: Hope u understood :P and i will be using the official rAthena job quests :)

THnx in advance,

Santafe~


BUMP :X

Link to comment
Share on other sites

3 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  154
  • Topics Per Day:  0.03
  • Content Count:  493
  • Reputation:   46
  • Joined:  01/24/12
  • Last Seen:  

yep its possible but im too lazy to make a script for you xp

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  91
  • Topics Per Day:  0.02
  • Content Count:  325
  • Reputation:   34
  • Joined:  06/01/13
  • Last Seen:  

Aww as long as its possible its ok xd

Link to comment
Share on other sites


  • Group:  Forum Moderator
  • Topic Count:  33
  • Topics Per Day:  0.01
  • Content Count:  1268
  • Reputation:   382
  • Joined:  02/03/12
  • Last Seen:  

For town block try...

-	script	buster	-1,{
OnPCLoadMapEvent:
	if(strcharinfo(3)=="prontera"&&eaclass()&EAJL_THIRD)
		warp "map",x,y;
	end;
}

prontera	mapflag	loadevent

To single out third job classes and give them items example.

if(eaclass()&EAJL_THIRD) {
	getitem(1220,1);
}
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...