Zmud (done on old 16bit version, I guess it would would work on newer versions, but I'm using JMC now) Coin Loot Autosplit thing: Set up these triggers Pattern Command There was (%d) gold #var money %1;#read money.txt There was (%d) silver #var money %1;#read money2.txt Put the text files in Zmud's local... where money.txt contains these commands #mat split (@money*2000)/(@groupno) #IF (@groupno >= 2) 'give @split copper @gromem1' #IF (@groupno >= 3) 'give @split copper @gromem2' #IF (@groupno >= 4) 'give @split copper @gromem3' #IF (@groupno >= 5) 'give @split copper @gromem4' #IF (@groupno >= 6) 'give @split copper @gromem5' and these for money2.txt #mat split (@money*100)/(@groupno) #IF (@groupno >= 2) 'give @split copper @gromem1' #IF (@groupno >= 3) 'give @split copper @gromem2' #IF (@groupno >= 4) 'give @split copper @gromem3' #IF (@groupno >= 5) 'give @split copper @gromem4' #IF (@groupno >= 6) 'give @split copper @gromem5' then set a variable for the number of group members: #al gronu #var groupno %1 and then set up targets- #al mem1 #var gromem1 #al mem2 #var gromem2 #al mem3 #var gromem3 #al mem4 #var gromem4 #al mem5 #var gromem5 so for instance if there were 3 in group(including yourself hehe) u type gronu 3, mem1 , mem2 and so forth - obviuosly if you hang around in hugegroups you'll have to extend mem(n) aliases and the if statements to fit. I also set up the aliases below cos it handier than making aliases everytime you group with someone new and cuts down on junk aliases building up: #al rm1 rescue @gromem1 #al rm2 rescue @gromem2 &etc, do them for protect to. I'm sure from all this you can figure the action/script for when you get both gold and silver :) Nightbreed