Skip to content

Quest_DropRate

MimisK edited this page Mar 18, 2020 · 1 revision

Syntax

Quest_DropRate(rate)
[
    Rand( FloatToInt(rate/1) )
]

Examples

  • Macro Use
if(OwnItemCount(c1, @timak_orc_skull) < 10 && MACRO<Quest_DropRate>(100) <= 70)
  • No Macro
if (OwnItemCount(c1, @timak_orc_skull) < 10 && Rand(100) <= 70)
Clone this wiki locally