Checkmate Posted December 5, 2017 Group: Members Topic Count: 96 Topics Per Day: 0.02 Content Count: 554 Reputation: 14 Joined: 09/24/12 Last Seen: November 20, 2024 Share Posted December 5, 2017 Is there anyone have script which has mvp warper that have special time appearing on it... Example mvp warper that only alppear on sunday and saturday only for certain time, the after that the npc was dissapear... And also with the value like zeny or cash piint or item to enter it.. Thx Quote Link to comment Share on other sites More sharing options...
0 Hismoon Posted December 6, 2017 Group: Members Topic Count: 7 Topics Per Day: 0.00 Content Count: 48 Reputation: 0 Joined: 12/07/11 Last Seen: March 15, 2022 Share Posted December 6, 2017 Don't know if it works but I think it's nearly to this what you want: prontera,100,100,3 script MvP Warper 100,{ set .@n$, "[Mvp Warper]"; set .@Price, 150000; set .@map$, "iz_dun00"; set .@x, 100; set .@y, 100; mes .@n$; mes "I can warp you to the mvp arena, but this cost you " + .@Price + " Zeny."; mes "Do you want to warp?"; next; if(select("No:Yes") == 1) { mes .@n$; mes "Good day then."; close; } if(Zeny < .@Price) { mes .@n$; mes "You haven' enough zeny to use this."; mes "Come back if you have enough."; close; } mes .@n$; mes "Here you go!"; close2; set Zeny, Zeny - .@Price; warp .@map$, .@x, .@y; end; OnSat0000: enablenpc strnpcinfo(0); announce "The MvP Warper appears!",bc_all; end; OnSun2359: disablenpc strnpcinfo(0); announce "The MvP Warper is going now! He come back on saturday again.",bc_all; end; OnInit: disablenpc strnpcinfo(0); end; } Quote Link to comment Share on other sites More sharing options...
Question
Checkmate
Is there anyone have script which has mvp warper that have special time appearing on it...
Example mvp warper that only alppear on sunday and saturday only for certain time, the after that the npc was dissapear...
And also with the value like zeny or cash piint or item to enter it..
Thx
Link to comment
Share on other sites
1 answer 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.