• 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!
  • 2026 staff recruitment is open! Check it out and consider applying!

Change Crystal Column

kmini11

New Member
Joined
Oct 30, 2010
Messages
28
Reaction score
0
Witam, szukam skryptu na zmiane koloru crystal column id od 9784 do 9787. Szukałem myślałem jak to napisać i nic nie znalazłem i nic nie wymyśliłem. Z prośba zwracam się do was o taki skrypt :o.

Z góry THX
 
Nie wiem o co Ci chodzi dokładnie ale dzięki funkcji możesz sobie zmieniać id (kolor) tych kolumn. poza tym są kolumny które same zmieniają kolor co kilka sekund.

Code:
doTransformItem(uid, toitemid[, count/subtype])
 
Chodzi mi o zmianę koloru tej kolumny
77906124787577381258.jpg
kompletnie nie wiem jak to zrobić :(
 
Przeciez kmini/kurczok napisali ci solucje, mozesz albo dac decayTo + decayTime w tiems.xml, albo uzyc gotowych juz kolumn ktore sie same zmieniaja.
 
XML:
	<item id="9784" article="a" name="crystal column">
		<attribute key="decayTo" value="9785"/>
		<attribute key="duration" value="8"/>
	</item>
	<item id="9785" article="a" name="crystal column">
		<attribute key="decayTo" value="9786"/>
		<attribute key="duration" value="12"/>
	</item>
	<item id="9786" article="a" name="crystal column">
		<attribute key="decayTo" value="9787"/>
		<attribute key="duration" value="11"/>
	</item>
	<item id="9787" article="a" name="crystal column">
		<attribute key="decayTo" value="9784"/>
		<attribute key="duration" value="10"/>
	</item>
	<item id="9788" article="a" name="crystal column">
		<attribute key="decayTo" value="9789"/>
		<attribute key="duration" value="8"/>
	</item>
	<item id="9789" article="a" name="crystal column">
		<attribute key="decayTo" value="9790"/>
		<attribute key="duration" value="13"/>
	</item>
	<item id="9790" article="a" name="crystal column">
		<attribute key="decayTo" value="9791"/>
		<attribute key="duration" value="11"/>
	</item>
	<item id="9791" article="a" name="crystal column">
		<attribute key="decayTo" value="9788"/>
		<attribute key="duration" value="10"/>
	</item>
 
Back
Top