Jump to content
  • 0

Possible to add npc in map ?


JassMax

Question


  • Group:  Members
  • Topic Count:  65
  • Topics Per Day:  0.02
  • Content Count:  235
  • Reputation:   0
  • Joined:  05/03/13
  • Last Seen:  

is it Possible to add npc on map without script ?

 

Link to comment
Share on other sites

16 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  65
  • Topics Per Day:  0.02
  • Content Count:  235
  • Reputation:   0
  • Joined:  05/03/13
  • Last Seen:  

prontera,150,150,6 npc nothing 54,{

}

Close;

this is script right?

want npc without script in map by editing map

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  36
  • Topics Per Day:  0.01
  • Content Count:  387
  • Reputation:   214
  • Joined:  11/01/11
  • Last Seen:  

I really do not think that is possible.  Least I haven't heard of it

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  65
  • Topics Per Day:  0.02
  • Content Count:  235
  • Reputation:   0
  • Joined:  05/03/13
  • Last Seen:  

I really do not think that is possible.  Least I haven't heard of it

 

I think its possible, im not sure too..

but i see there is rainbow effect in map, and its appears if we go near that spot. and there is no script for it. its added in map!

example this smoke effect

[ specialeffect2 44 ]

this effect could add by script..

but in this pic.. i don't think there is script for that effect! it is in map

if this is possible

then why cant add npc without script in map?

so if i added custom  map with npc without script 

 it should be appears like effects...

i hope there is way to do that xD

i wanna make npc which could heal player if touch..

post-17166-0-53369100-1391040418_thumb.jpg

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  43
  • Reputation:   3
  • Joined:  07/08/13
  • Last Seen:  

you can use invincible NPC(ID:139) then apply that specialeffect

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  65
  • Topics Per Day:  0.02
  • Content Count:  235
  • Reputation:   0
  • Joined:  05/03/13
  • Last Seen:  

you can use invincible NPC(ID:139) then apply that specialeffect

dose that heal player ? if touch ?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  43
  • Reputation:   3
  • Joined:  07/08/13
  • Last Seen:  

you can add a OnTouch script to do that. for example

prontera,150,180,4	script	Healer	139,3,3,{
OnInit:
	set .seteffect, 1;
	while(.seteffect) {
		misceffect EF_LG_KINGS_GRACE;
		sleep 15000;
	}
	end;
OnTouch:
	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;
}

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  65
  • Topics Per Day:  0.02
  • Content Count:  235
  • Reputation:   0
  • Joined:  05/03/13
  • Last Seen:  

aw!

i don't wanna add script'

i want to edit custom map which has npc or area heal or map that never hp down (hpfull all time ) just for practicing pvp (no script)

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  65
  • Topics Per Day:  0.02
  • Content Count:  235
  • Reputation:   0
  • Joined:  05/03/13
  • Last Seen:  

not possible xD

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  105
  • Topics Per Day:  0.02
  • Content Count:  332
  • Reputation:   15
  • Joined:  12/11/11
  • Last Seen:  

you can try something like this:

 

-	script	prontera	-1,{
OnPCLoadMapEvent:
sleep2 50;
getmapxy .@usermap$,.@xx,.@yy,0;
while(.@usermap$ == "prontera") {
getmapxy .@usermap$,.@xx,.@yy,0;
if (.@usermap$ == "prontera") {
// You could use 'percentheal ,;' too so it is fairer among players with different HP values.
percentheal 100,100;
}
sleep2 50;
}
end;
}
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  2
  • Topics Per Day:  0.00
  • Content Count:  43
  • Reputation:   3
  • Joined:  07/08/13
  • Last Seen:  

you can try something like this:

 

-	script	prontera	-1,{
OnPCLoadMapEvent:
sleep2 50;
getmapxy .@usermap$,.@xx,.@yy,0;
while(.@usermap$ == "prontera") {
getmapxy .@usermap$,.@xx,.@yy,0;
if (.@usermap$ == "prontera") {
// You could use 'percentheal ,;' too so it is fairer among players with different HP values.
percentheal 100,100;
}
sleep2 50;
}
end;
}

 

What TS want is..

 

aw!

i don't wanna add script'

i want to edit custom map which has npc or area heal or map that never hp down (hpfull all time ) just for practicing pvp (no script)

 

I think it is possible if you edit your src, but Im not sure..

Edited by sevenzz23
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  87
  • Topics Per Day:  0.02
  • Content Count:  1335
  • Reputation:   932
  • Joined:  10/26/11
  • Last Seen:  

Sorry, thats not possible by a map. Moved to script support.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  65
  • Topics Per Day:  0.02
  • Content Count:  235
  • Reputation:   0
  • Joined:  05/03/13
  • Last Seen:  

Thanks guys

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  105
  • Topics Per Day:  0.02
  • Content Count:  332
  • Reputation:   15
  • Joined:  12/11/11
  • Last Seen:  

I don't get it, how would you add anything of this sort without a script o.O?

Edited by Phenex
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  104
  • Reputation:   6
  • Joined:  01/23/14
  • Last Seen:  

Well.. is there any way to set a buf on an open map.. i mean.. ur hp will be heal over time if you being on the map..

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