• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Solved [Problem] Monsters don't give any loot for GMS

picachu

Member
Joined
Dec 2, 2007
Messages
970
Reaction score
11
My monster's ain't giving any loot for GMS

I already tried to create a new group on groups.xml to try drop loot on gms but nothing!
how can I make monster drop loot in gms?
TFS 0.4

ty
 
Last edited:
no, everyone with access 0,1,3 will be able to kill :p

in my server
id 1 = player
id 2 = tutor
id 7 = customized new one

i want that them can kill and also get loot
so how can I configure it on source?

give me the right code please
:D
the loot thing is fixed. s2
but now i need this thing of kill someone
 
access is not group id. check groups.xml for more details on access levels.

try:
Code:
	if(getAccess() > 2 || getZone() != target->getZone())
		return true;
 
Cyko, now I need this one
last thing

Creature::onAttackedCreature(target);
if(hasFlag(PlayerFlag_NotGainInFight))
return;

how can I put access 2 like the other one?
ttyy

--edit: doesnt need to edit that, my fault.
thx :p.
topic solved
 
Last edited:

Similar threads

Back
Top