• 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!

Stack Summons

owned

Excellent OT User
Joined
Nov 9, 2008
Messages
2,001
Solutions
3
Reaction score
559
Location
New York
Not sure where you would have to edit or how to edit but i need it so that instead of your summons staying like 2 squares behind u, they will stack right on top of you at almost all times. unless of course your moving it may be behind you but when u stop itll stack.
 
you can do it by a globalevent script, example:
Code:
function onThink(interval, lastExecution)
	for _, cid in ipairs(getPlayersOnline()) do
		for _, pid in ipairs(getCreatureSummons(cid)) do
			if #pid > 0 then doTeleportThing(pid, getThingPos(cid), true) end
		end
	end
	return true
end
also i guess Nemaneth did it for you before.
 
noo not like that, if you go on any ot, and u say utevo res "monster, the monster will stay 2 squares behind you. id like it so its no behind but right on me at like all times unless im moving then obviously itll be behind by like 1 square
 
Back
Top