Mr BrycE Posted June 1, 2012 Posted June 1, 2012 dicastes01,213,167,5 script Warp to Dewata 536,{ if( countitem(6048) >= 10 || countitem(7078) >= 5) { delitem 6048,10; delitem 7078,5; warp "dewata",232,53; announce " "+strcharinfo(0)+": has been warped to Dewata Island!!",bc_all; }else{ warp "SavePoint",0,0; dispbottom "Entry to Dewata requires a 10pcs Unidentified Ore and 5pcs Wrath of Valkyrie."; } end; } how will i change it to when they enter again they dont need to pay again... Quote
quesoph Posted June 1, 2012 Posted June 1, 2012 (edited) here ya go. dicastes01,213,167,5 script Warp to Dewata 536,{ if( paid ) { warp "dewata",232,53; announce " "+strcharinfo(0)+": has been warped to Dewata Island!!",bc_all; end; } if( countitem(6048) >= 10 || countitem(7078) >= 5) { delitem 6048,10; delitem 7078,5; set paid, 1; warp "dewata",232,53; announce " "+strcharinfo(0)+": has been warped to Dewata Island!!",bc_all; } else { warp "SavePoint",0,0; dispbottom "Entry to Dewata requires a 10pcs Unidentified Ore and 5pcs Wrath of Valkyrie."; } end; } Edited June 1, 2012 by quesoph Quote
Mr BrycE Posted June 1, 2012 Author Posted June 1, 2012 (edited) i will try this thank you sir... EDIT: Thank you sir its working.. Edited June 1, 2012 by Mr BrycE Quote
Question
Mr BrycE
how will i change it to when they enter again they dont need to pay again...
2 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.