Dori Posted October 29, 2013 Share Posted October 29, 2013 (edited) I'm trying to make this item give a random rental item. This is the script atm. It's currently using getitem: 28001,box,box,2,0,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ if(Sex == 1) { getitem rand(28103,28104),1; } else { getitem rand(28101,28102),1; } },{},{} Is it possible to make rentitem random like getitem?If not, how can I make it happen with rentitem? Edited October 29, 2013 by Phenex Quote Link to comment Share on other sites More sharing options...
GmOcean Posted October 29, 2013 Share Posted October 29, 2013 if(Sex){rentitem( rand(28103,28104),TIME );} else {rentitem( rand(28101,28102), TIME );} 1 Quote Link to comment Share on other sites More sharing options...
Dori Posted October 29, 2013 Author Share Posted October 29, 2013 (edited) Oh thank you! I will try this out Edit: Thanks it worked Edited October 29, 2013 by Phenex Quote Link to comment Share on other sites More sharing options...
I'm trying to make this item give a random rental item. This is the script atm. It's currently using getitem:
28001,box,box,2,0,,20,,,,,0xFFFFFFFF,63,2,,,,,,{ if(Sex == 1) { getitem rand(28103,28104),1; } else { getitem rand(28101,28102),1; } },{},{}Is it possible to make rentitem random like getitem?If not, how can I make it happen with rentitem?
Edited by PhenexLink to comment
Share on other sites