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

[MOD] Smoke System By Amy Azzkaban

azzkaban

Monster Maker
Joined
Feb 23, 2010
Messages
1,101
Reaction score
194
Location
Iquique Chile
cimad.png

sokegif.gif

baixon.jpg


XML:
<?xml version="1.0" encoding="UTF-8"?>
<mod name="SMOKE SYSTEM" version="2.0" author="Amy Azzkaban" contact="blacktibia.org/otland.net" enabled="yes">
<description>
## SMOKE SYSTEM BY AMY AZZKABAN ##
</description>

	<movevent type="StepIn" itemid="1505" event="script"><![CDATA[
		local condition = createConditionObject(CONDITION_CURSED)
		setConditionParam(condition, CONDITION_PARAM_PERIODICDAMAGE, -20)
		setConditionParam(condition, CONDITION_PARAM_TICKS, -1)
		setConditionParam(condition, CONDITION_PARAM_TICKINTERVAL, 5)

		function onStepIn(cid, item, pos)
			if isPlayer(cid) == TRUE then
				doAddCondition(cid, condition)
			end
		end
]]></movevent>

	<movevent type="StepOut" itemid="1505" event="script"><![CDATA[
		function onStepOut(cid, item, pos)
			doRemoveCondition(cid, CONDITION_CURSED)
		end
	]]></movevent>
</mod>
 
Last edited:
One of your first MOD's? Good release. I think this could be useful for certain "low" level quests, or events for that matter. ;)
 
This is not really a good idea, things like that may cause major laggs. You should prefer adding those things in the c++ section. Check all the firewalking scripts.
 
very nice, but, why u always put your scripts in mod? Also `ticks` to endless?
 
very nice, but, why u always put your scripts in mod? Also `ticks` to endless?
I know the question wasnt to me.
1ST why mods was made FOR ?
awser : it was MADE FOR ANY MODIFICATION THAT HAS NOTTHING WITH TIBIA GLOBAL
AND IS an EASY WAY TO PORT UR SCRIPT FROM AN DRISTO ( OT ) TO AN OTHER WITH OUT BEING CRAZY TO LOCATE ALL NEEDED SCRIPT
--
--2nd and 3th is at 1ST lol :]
now me too i do only thinks in mods
;) love it

EXEMPLE :
Advanced rank system by time
there i would need to make 7 FILEs but with MOD i can do only with 2.

@EDIT
without forget the need to add tags in xml before ur script can work !
 
Back
Top