JassMax Posted January 29, 2014 Posted January 29, 2014 is it Possible to add npc on map without script ? Quote
Fresh prince Posted January 29, 2014 Posted January 29, 2014 prontera,150,150,6 npc nothing 54,{ } Close; Quote
JassMax Posted January 29, 2014 Author Posted January 29, 2014 prontera,150,150,6 npc nothing 54,{ } Close; this is script right? want npc without script in map by editing map Quote
Chemical Crush Posted January 29, 2014 Posted January 29, 2014 I really do not think that is possible. Least I haven't heard of it Quote
JassMax Posted January 30, 2014 Author Posted January 30, 2014 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.. Quote
sevenzz23 Posted January 30, 2014 Posted January 30, 2014 you can use invincible NPC(ID:139) then apply that specialeffect Quote
JassMax Posted January 30, 2014 Author Posted January 30, 2014 you can use invincible NPC(ID:139) then apply that specialeffect dose that heal player ? if touch ? Quote
sevenzz23 Posted January 30, 2014 Posted January 30, 2014 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; } Quote
JassMax Posted January 30, 2014 Author Posted January 30, 2014 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) Quote
Dori Posted January 30, 2014 Posted January 30, 2014 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; } Quote
sevenzz23 Posted January 30, 2014 Posted January 30, 2014 (edited) 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 January 30, 2014 by sevenzz23 Quote
Olrox Posted January 31, 2014 Posted January 31, 2014 Sorry, thats not possible by a map. Moved to script support. Quote
Dori Posted January 31, 2014 Posted January 31, 2014 (edited) I don't get it, how would you add anything of this sort without a script o.O? Edited January 31, 2014 by Phenex Quote
StainSky93 Posted February 2, 2014 Posted February 2, 2014 (edited) 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 February 2, 2014 by StainSky93 Quote
Question
JassMax
is it Possible to add npc on map without script ?
16 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.