VladimirCastro Posted October 14, 2012 Group: Members Topic Count: 114 Topics Per Day: 0.02 Content Count: 298 Reputation: 4 Joined: 03/13/12 Last Seen: September 18, 2016 Share Posted October 14, 2012 // -------------------------------------------------- Special: // -------------------------------------------------- menu "Auction Hall",S1, "Battlegrounds",S2, "Casino",S3, "Gonryun Arena",S4, "Izlude Arena",S5, "Monster Race Arena",S6, "Turbo Track",S7; S1: Go("auction_01",22,68); S2: Go("bat_room",154,150); S3: Go("cmd_in02",179,129); S4: Go("gon_test",48,10); S5: Go("arena_room",100,88); S6: Go("p_track01",62,41); S7: Go("turbo_room",99,114); } how can i make it like for example before i can go to auction_01 i need to have an requirement items ? Quote Link to comment Share on other sites More sharing options...
Euphy Posted October 14, 2012 Group: Members Topic Count: 72 Topics Per Day: 0.02 Content Count: 2997 Reputation: 1132 Joined: 05/27/12 Last Seen: June 1, 2017 Share Posted October 14, 2012 These are standard menu options and labels, so you can add conditions directly to the label. S1: if (countitem(512) < 10) { message strcharinfo(0),"You need 10 apples to warp here."; close; } else { delitem 512,10; Go("auction_01",22,68); } Quote Link to comment Share on other sites More sharing options...
VladimirCastro Posted October 14, 2012 Group: Members Topic Count: 114 Topics Per Day: 0.02 Content Count: 298 Reputation: 4 Joined: 03/13/12 Last Seen: September 18, 2016 Author Share Posted October 14, 2012 hello for example i dont want the items to be deleted how can i do that? Quote Link to comment Share on other sites More sharing options...
Euphy Posted October 14, 2012 Group: Members Topic Count: 72 Topics Per Day: 0.02 Content Count: 2997 Reputation: 1132 Joined: 05/27/12 Last Seen: June 1, 2017 Share Posted October 14, 2012 Don't include delitem? o.o Quote Link to comment Share on other sites More sharing options...
Question
VladimirCastro
how can i make it like for example before i can go to auction_01 i need to have an requirement items ?
Link to comment
Share on other sites
3 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.