hi igot problem in tibia when u equip horse monsters cannot demage u how to fix it i want what u can die when u use horses ?:)
AND SORRY FOR MY ENGLISH
Admin/mod comment
trashed 4 fucking with the title limitations (p r o b l e m?) Do you always type like t h a t? You're not allowed to use the word problem in your title. So I guess it's all right. no just when u try to write name of ur post u cannot use word= help,problem ..... u get error then i do this what dont get error p r o b l e m
sCy User
Offline
You mean you cant damage monsters?
Just go to monsters.lua and find this:
1
2
3
4
5
6
7
8
9
addhook("attack", "MONSTERattack")
function MONSTERattack(id)
	if gettile(PLAYERS[id].x, PLAYERS[id].y).SAFE then
		return
	end
	if inarray({400, 401, 402, 403, 404}, PLAYERS[id].Equipment[7]) then
		message(id, "You may not attack on a horse.")
		return
	end
Just remove the 400, 401, 402, 403, 404 from the inarray, should work then.