it's hard to understand but i starting to get little what u mean >.<
1.oh, that one is generate random inside 100. over 50 get item,below 50 nothing get.
2.too long ~.~" (my English not really good alot not understand nvm this one)
3.ya, this one just for get item but not what i want. - -" i want put rare item lower rate.
4.
if( rand(300) < 100 ) getitem ID,Amount; // If Randomed below 100
else if( rand(300) > 100 && rand(300) < 150 ) getitem ID,Amount; // If Randomed between 100 ~ 149
else if( rand(300) > 150 && rand(300) < 200 ) getitem ID,Amount; // If Randomed between 150 ~ 199
else if( rand(300) > 200 && rand(300) < 250 ) getitem ID,Amount; // If Randomed between 200 ~ 249
else if( rand(300) > 250 && rand(300) < 300 ) getitem ID,Amount; // If Randomed between 250 ~ 299
else if( rand(300) > 300 && rand(300) < 350 ) getitem ID,Amount; // If Randomed between 300 ~ 349
else getitem ID,Amount; // above 349
-mean if i want put more item format should put like this? what if the item same rate?
-the higher rate easy get item or lower rate easy get item? what if i want set rare item?