JassMax Posted January 29, 2014 Group: Members Topic Count: 65 Topics Per Day: 0.01 Content Count: 235 Reputation: 0 Joined: 05/03/13 Last Seen: December 18, 2018 Share Posted January 29, 2014 is it Possible to add npc on map without script ? Quote Link to comment Share on other sites More sharing options...
Fresh prince Posted January 29, 2014 Group: Members Topic Count: 69 Topics Per Day: 0.02 Content Count: 295 Reputation: 6 Joined: 10/14/12 Last Seen: June 12, 2021 Share Posted January 29, 2014 prontera,150,150,6 npc nothing 54,{ } Close; Quote Link to comment Share on other sites More sharing options...
JassMax Posted January 29, 2014 Group: Members Topic Count: 65 Topics Per Day: 0.01 Content Count: 235 Reputation: 0 Joined: 05/03/13 Last Seen: December 18, 2018 Author Share 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 Link to comment Share on other sites More sharing options...
Chemical Crush Posted January 29, 2014 Group: Members Topic Count: 36 Topics Per Day: 0.01 Content Count: 387 Reputation: 214 Joined: 11/01/11 Last Seen: January 25, 2023 Share Posted January 29, 2014 I really do not think that is possible. Least I haven't heard of it Quote Link to comment Share on other sites More sharing options...
JassMax Posted January 30, 2014 Group: Members Topic Count: 65 Topics Per Day: 0.01 Content Count: 235 Reputation: 0 Joined: 05/03/13 Last Seen: December 18, 2018 Author Share 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 Link to comment Share on other sites More sharing options...
sevenzz23 Posted January 30, 2014 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 43 Reputation: 3 Joined: 07/08/13 Last Seen: April 8, 2015 Share Posted January 30, 2014 you can use invincible NPC(ID:139) then apply that specialeffect Quote Link to comment Share on other sites More sharing options...
JassMax Posted January 30, 2014 Group: Members Topic Count: 65 Topics Per Day: 0.01 Content Count: 235 Reputation: 0 Joined: 05/03/13 Last Seen: December 18, 2018 Author Share Posted January 30, 2014 you can use invincible NPC(ID:139) then apply that specialeffect dose that heal player ? if touch ? Quote Link to comment Share on other sites More sharing options...
sevenzz23 Posted January 30, 2014 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 43 Reputation: 3 Joined: 07/08/13 Last Seen: April 8, 2015 Share 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 Link to comment Share on other sites More sharing options...
JassMax Posted January 30, 2014 Group: Members Topic Count: 65 Topics Per Day: 0.01 Content Count: 235 Reputation: 0 Joined: 05/03/13 Last Seen: December 18, 2018 Author Share 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 Link to comment Share on other sites More sharing options...
sevenzz23 Posted January 30, 2014 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 43 Reputation: 3 Joined: 07/08/13 Last Seen: April 8, 2015 Share Posted January 30, 2014 well Goodluck Quote Link to comment Share on other sites More sharing options...
JassMax Posted January 30, 2014 Group: Members Topic Count: 65 Topics Per Day: 0.01 Content Count: 235 Reputation: 0 Joined: 05/03/13 Last Seen: December 18, 2018 Author Share Posted January 30, 2014 not possible xD Quote Link to comment Share on other sites More sharing options...
Dori Posted January 30, 2014 Group: Members Topic Count: 105 Topics Per Day: 0.02 Content Count: 332 Reputation: 15 Joined: 12/11/11 Last Seen: August 8, 2017 Share 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 Link to comment Share on other sites More sharing options...
sevenzz23 Posted January 30, 2014 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 43 Reputation: 3 Joined: 07/08/13 Last Seen: April 8, 2015 Share 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 Link to comment Share on other sites More sharing options...
Olrox Posted January 31, 2014 Group: Members Topic Count: 87 Topics Per Day: 0.02 Content Count: 1335 Reputation: 933 Joined: 10/26/11 Last Seen: November 19, 2023 Share Posted January 31, 2014 Sorry, thats not possible by a map. Moved to script support. Quote Link to comment Share on other sites More sharing options...
JassMax Posted January 31, 2014 Group: Members Topic Count: 65 Topics Per Day: 0.01 Content Count: 235 Reputation: 0 Joined: 05/03/13 Last Seen: December 18, 2018 Author Share Posted January 31, 2014 Thanks guys Quote Link to comment Share on other sites More sharing options...
Dori Posted January 31, 2014 Group: Members Topic Count: 105 Topics Per Day: 0.02 Content Count: 332 Reputation: 15 Joined: 12/11/11 Last Seen: August 8, 2017 Share 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 Link to comment Share on other sites More sharing options...
StainSky93 Posted February 2, 2014 Group: Members Topic Count: 10 Topics Per Day: 0.00 Content Count: 104 Reputation: 6 Joined: 01/23/14 Last Seen: March 23, 2014 Share 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 Link to comment Share on other sites More sharing options...
Question
JassMax
is it Possible to add npc on map without script ?
Link to comment
Share on other sites
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.