Jump to content
  • 0

Question

Posted

// --------------------------------------------------
   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 ?

3 answers to this question

Recommended Posts

Posted

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); }

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...