How to custom entrance portal (color effect or etc)

someonesay

New member
Messages
1
Points
0
How to custom entrance portal in any map ?

(color effect or etc)

thank
default_smile.png


 
either do custom sprites, or maybe some scripted warps like 

Code:
map,x,y,4	script	Exit	HIDDEN_NPC,{
OnInit:
    waitingroom "Exit" ,0;
end;

}

map,x,y,0	script	Prontera Warp#novi1	1_SHADOW_NPC,2,2,{

	OnTouch:
		specialeffect2 EF_AGIUP2;
		specialeffect2 EF_JUMPBODY;
		sleep2 1000;
		warp "prontera", 156, 176;
		end;
}
 
Last edited by a moderator:
Back
Top