I kinda figured it out, but I still can't make the item drop on the coordinates where the monster died. Tried getunitdata, but no success.
OnMonsterKilled:
.@dropchance = rand(1,100);
if(.@dropchance <= 5){
getmapxy(.@map$,.@x,.@y,BL_PC);
setarray .@fateshard[0],1000258,1000259,1000260,1000261,1000262;
.@randomshard = rand(getarraysize(.@fateshard));
makeitem (.@fateshard[.@randomshard]),1,.@map$,.@x,.@y;
}
dispbottom "Rand: "+.@dropchance;
}
Also, since i'm a complete newbie at scripting, I still don't understand the different scopes of variables, can you enlight me on this one?I've read the doc/script_commands.txt file, but it's not clear to me. Like, when should I use ".@" vs "." var?