Worst Posted June 26, 2014 Posted June 26, 2014 (edited) how to create a portal that is only who can get groupid 2 ? vip,59,265,0 warp prvip 2,2,prontera,156,191 Edited June 28, 2014 by Worst Quote
sandbox Posted June 27, 2014 Posted June 27, 2014 map,x,y,d script 45,1,1,{ OnTouch: if(getgroupid() > 1) warp "map",a,b; end; } Take note of the tabs, because I used a 'space' on the npc name. 1 Quote
Worst Posted June 27, 2014 Author Posted June 27, 2014 (edited) is to add a chat in groupid 1 : You are not vip Edited June 27, 2014 by Worst Quote
Jyabil Posted June 27, 2014 Posted June 27, 2014 map,x,y,d script 45,1,1,{ OnTouch: if(getgroupid() > 1) warp "map",a,b; if(getgroupid() < 2) dispbottom "You are not vip"; end; } 1 Quote
sandbox Posted June 30, 2014 Posted June 30, 2014 map,x,y,d script 45,1,1,{ OnTouch: if(getgroupid() > 1) warp "map",a,b; else message strcharinfo(0),"You are not VIP"; end; } Take note of the tabs, because I used a 'space' on the npc name. Updated Quote
Question
Worst
how to create a portal that is only who can get groupid 2 ?
Edited by Worst5 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.