Jump to content

Recommended Posts

  • 8 months later...
Posted

Use like this

	<item id="1" type="Weapon" name="Short Sword">
		<set name="icon" val="icon.weapon_small_sword_i00" />
		<set name="default_action" val="equip" />
		<set name="weapon_type" val="SWORD" />
		<set name="bodypart" val="rhand" />
		<set name="random_damage" val="10" />
		<set name="attack_range" val="40" />
		<set name="damage_range" val="0;0;40;120" />
		<set name="material" val="STEEL" />
		<set name="weight" val="1600" />
		<set name="price" val="768" />
		<set name="soulshots" val="1" />
		<set name="spiritshots" val="1" />
		<for>
			<set order="0x08" stat="pAtk" val="8" />
			<set order="0x08" stat="mAtk" val="6" />
			<set order="0x08" stat="rCrit" val="8" />
			<set order="0x08" stat="pAtkSpd" val="379" />
		</for>
	</item>
Posted

 

Use like this

	<item id="1" type="Weapon" name="Short Sword">
		<set name="icon" val="icon.weapon_small_sword_i00" />
		<set name="default_action" val="equip" />
		<set name="weapon_type" val="SWORD" />
		<set name="bodypart" val="rhand" />
		<set name="random_damage" val="10" />
		<set name="attack_range" val="40" />
		<set name="damage_range" val="0;0;40;120" />
		<set name="material" val="STEEL" />
		<set name="weight" val="1600" />
		<set name="price" val="768" />
		<set name="soulshots" val="1" />
		<set name="spiritshots" val="1" />
		<for>
			<set order="0x08" stat="pAtk" val="8" />
			<set order="0x08" stat="mAtk" val="6" />
			<set order="0x08" stat="rCrit" val="8" />
			<set order="0x08" stat="pAtkSpd" val="379" />
		</for>
	</item>

 

don't be stupid, that cannot be done without the proper tool on 10.000 items

 

the proper usage on IL was that I coded some time ago

<icon id="1" val="icon.weapon_small_sword_i00" />

Posted (edited)

don't be stupid, that cannot be done without the proper tool on 10.000 items

 

the proper usage on IL was that I coded some time ago

<icon id="1" val="icon.weapon_small_sword_i00" />

 

If you do not have the knowledge to do it for 10,000 items, it does not mean that all the other idiots.

 

Only idiots use the database and individual xml files for static data. Therefore Tryskell ignores your idiotic ideas.

 

Have a nice day!

Edited by Rootware
Posted (edited)

If you do not have the knowledge to do it for 10,000 items, it does not mean that all the other idiots.

 

Only idiots use the database and individual xml files for static data. Therefore Tryskell ignores your idiotic ideas.

 

Have a nice day!

 

hahahah u suck badly man, the static XML im talking about loads 10k icons in 10 miliseconds, in a hashmap providing great speeds. Possibly faster than Item.getItem().getIcon() 

 

But your russian, the arrow shoots you, nothing to discuss with such a garbage, uneducated russian beast like you.

 

 

Additionally, individual XML file gives you the opportunity not to load the icons by option if you don't need them. But Im pretty sure your slow russian head didn't had enough power to process this two simple things

Edited by xdem
Posted (edited)

this piece of ..... will slow your server, do not use it.

 

How it will slow your server? It uses just a connection and then it loads them in a map and I think loading these strings is fast.

Edited by `PonyRider
Posted

How it will slow your server? It uses just a connection and then it loads them in a map and I think loading these strings is fast.

 

Don't pay attention to what randoms say. That database connection is not bad or slow, but not efficient since you can load it in XMLs.

 

the guy who coded that code, used my IconsTable as base, my IconsTable was working only for aCis meaning that it wouldn't work for Frozen without the correct libs. So instead of creating the XML parser like aCis has, he just went through the fast way, aka db connection

Posted (edited)

hahahah u suck badly man, the static XML im talking about loads 10k icons in 10 miliseconds, in a hashmap providing great speeds. Possibly faster than Item.getItem().getIcon() 

 

But your russian, the arrow shoots you, nothing to discuss with such a garbage, uneducated russian beast like you.

 

 

Additionally, individual XML file gives you the opportunity not to load the icons by option if you don't need them. But Im pretty sure your slow russian head didn't had enough power to process this two simple things

 

Really? The last sources of L2J uses the icons in the items descriptions. They also idiots that use it?
 
Maybe only the author of this topic is idiot who tries to reinvent the wheel?
Edited by Rootware
Posted (edited)

 

Really? The last sources of L2J uses the icons in the items descriptions. They also idiots that use it?
 
Maybe only the author of this topic is idiot who tries to reinvent the wheel?

 

 

Whats the difference between icons.xml and icons embedded into items.xml. None, so you make no sense at all. 

Edited by xdem
Posted

Whats the difference between icons.xml and icons embedded into items.xml. None, so you make no sense at all.

 

Not necessarily specify the icon for each item.

        _icon = set.getString("icon", "icon.noimage");

If you have not added to the description of an item icon name, the default value is used "icon.noimage".

 

As a result, use of icons in the properties of scripts much easier.

 

<img src=" + ItemTable.getInstance().getTemplate(itemId).getIcon() + " height=32 width=32>

Therefore, any other choices are an invention of the bicycle.

 

Have a nice day!

Posted (edited)

 

Not necessarily specify the icon for each item.

        _icon = set.getString("icon", "icon.noimage");

If you have not added to the description of an item icon name, the default value is used "icon.noimage".

 

As a result, use of icons in the properties of scripts much easier.

 

<img src=" + ItemTable.getInstance().getTemplate(itemId).getIcon() + " height=32 width=32>

Therefore, any other choices are an invention of the bicycle.

 

Have a nice day!

 

Mr.Retard, all Interlude datapacks MISS the method getIcon();

 

items.xml DON'T have _icon = set.getString("icon", "icon.noimage"); NEITHER <set name="icon" val="icon.1234" />

 

so you HAVE to create an icons.xml that will load <ItemId, IconString> in the table, whjere's the reinvention here when you are missing the whole static data?

 

 

Have a bad day!

Edited by xdem
Posted

Mr.Retard, all Interlude datapacks MISS the method getIcon();

 

items.xml DON'T have _icon = set.getString("icon", "icon.noimage"); NEITHER <set name="icon" val="icon.1234" />

 

so you HAVE to create an icons.xml that will load <ItemId, IconString> in the table, whjere's the reinvention here when you are missing the whole static data?

 

 

Have a bad day!

 

 

What's stopping you create it? Knowledge?

 

In any case, it is much easier to do than to create a separate instance for some icons. Learn Java and structure of the server order to not to write nonsense in the future.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Posts

    • Doesn't respond to DM on discord, I need the source to implement. He only gave me a compiled version with a bad script, I didn't want to complain here but it's a fact.
    • Hello friend, did you do it? Please send the link to the topic, please ❤️
    • ✨ We believe that technology is worthless without a human touch. A service can be fast, convenient, and modern, but if users are not treated with respect, not listened to, and their problems are not solved, all of this loses its meaning. We believe that respect should go both ways. And that’s why we want to build an audience that’s a pleasure to work with— people who respect us just as much as we respect them (at least a little).   Website: vibe-sms.com Telegram: https://t.me/vibe_sms  
    • 价格更新 – TikTok 账号与新产品. 在流量套利中,TikTok 账号起着关键作用。广告活动的成功以及套利者的收益直接取决于账号的质量。可靠且高质量的账号能够在推广中提供稳定性、信任和长期效果。 在我们这里,您只会找到经过验证的 TikTok 账号,适合开展广告投放、扩展受众和扩大收益。正确选择账号是高效套利的基础! 我们网上商店的完整产品目录: 账号: Telegram、Facebook、Reddit、Twitter (X)、Instagram、YouTube、TikTok、Discord、VK、LinkedIn、GitHub、Snapchat、Gmail、邮箱账号 (Outlook、Firstmail、Rambler、Onet、Gazeta、GMX、Yahoo、Proton、Web.de)、Google Voice、Google Ads 高级订阅: Telegram Premium、Twitter Premium X、YouTube Premium、Spotify Premium、Netflix Premium、Discord Nitro、ChatGPT Plus/PRO、XBOX Game Pass 附加服务: Telegram Stars、代理 (IPv4、IPv6、ISP、移动)、VPN (Outline、WireGuard 等)、VDS/RDP 服务器 优惠码: AUGUST2025 (九折优惠) 支付方式: 银行卡 · 加密货币 · 其他常用方式 相关链接: ➡ 网店: 点击 ➡ Telegram 机器人: 点击 ➡ SMM 面板: 点击 – 推广您的社交媒体账号 使用我们的 SMM 面板 可提升 Facebook、Instagram、Telegram、Spotify、Soundcloud、YouTube、Reddit、Threads、Kick、Discord、LinkedIn、Likee、VK、Twitch、Kwai、Reddit、网站流量、TikTok、Trust Pilot、Apple Music、Tripadvisor、Snapchat 及其他数字产品。 首次体验 SMM 面板可获得 1 美元:只需在 我们的网站 (支持) 提交工单,主题填写 “Get Trial Bonus”。 更新后的TikTok 账号种类与价格调整: TIKTOK 新账号 TikTok 蓝 V 认证账号 | 真实账号,拥有真实粉丝与互动 | 官方认证 | 当前价格: $2500 TikTok 高质量新自动注册账号 | 国家:美国和欧洲 | 完整访问权限 (包含邮箱) | 起价 $0.2 TIKTOK – 空号自动注册 II 通过 @RAMBLER.RU/@FIRSTMAIL 验证 II 包含邮箱,使用 RU IP 注册 | 起价 $0.1 自动注册 TikTok 账号 II 通过 rambler.ru 邮箱验证,包含邮箱 II 性别混合 II 拉丁名 II 空白资料 II 使用混合 IP 注册 | 起价 $0.1 粉丝账号 自动注册 TikTok 账号 II 100+ 粉丝 II 通过邮箱验证 @hotmail/@outlook/@firstmail/@rambler,包含有效邮箱 II 性别混合 II 拉丁名 II 使用混合 IP 注册 | 起价 $0.39 自动注册 TikTok 账号 II 1000+ 粉丝 II 邮箱验证,包含有效邮箱 II 性别混合 II 拉丁名 II 支持开播+可加链接 II 使用混合 IP 注册 | 起价 $2.5 自动注册 TikTok 账号 II 5000 粉丝 II 邮箱验证,包含有效邮箱 II 性别混合 II 拉丁名 II 支持开播+可加链接 II 使用混合 IP 注册 | 起价 $10 自动注册 TikTok 账号 II 10,000+ 粉丝 II 邮箱验证,包含有效邮箱 II 性别混合 II 拉丁名 II 支持开播+可加链接 II 使用混合 IP 注册 | 起价 $19 老号 (有/无粉丝) TikTok 高质量老号 | 年份:2022-2024 | 国家:混合 | 完整访问权限 (包含邮箱) | 起价 $0.35 TikTok 高质量老号 (粉丝数量 100-10,000 可选) | 年份:2022-2024 | 国家:混合 | 完整访问权限 (包含邮箱) | 起价 $0.89 TIKTOK 广告账号 TIKTOK 广告账号 | 区域:欧洲 | 预付 | 手工注册 | 邮箱访问 + Cookies + VAT 信息 | 起价 $1 TIKTOK 广告账号 | 区域:美国 | 预付 | 手工注册 | 邮箱访问 + Cookies + VAT 信息 | 起价 $1 TIKTOK 广告账号 | 区域:美国 | 企业认证 + 后付 | 手工注册 | 邮箱访问 + Cookies + VAT 信息 | 起价 $3.5 TIKTOK 广告账号 | 区域:欧洲 | 企业认证 + 后付 | 手工注册 | 邮箱访问 + Cookies + VAT 信息 | 起价 $3.5 TIKTOK 广告账号 | 区域:欧洲 | 后付+企业中心 | 3 个广告账户 + 1 个个人账户 | 可能包含 $20-$100 广告优惠券 | 手工注册 | 邮箱访问 + Cookies + VAT 信息 | 起价 $8 TIKTOK 广告账号 | 区域:美国 | 后付+企业中心 | 3 个广告账户 + 1 个个人账户 | 可能包含 $20-$100 广告优惠券 | 手工注册 | 邮箱访问 + Cookies + VAT 信息 | 起价 $8 老客户 – 额外 折扣 和 优惠码! 9–8 折 或 注册赠送 $1 如果您想获得注册赠送 $1 或首次购买享受 9–8 折优惠,可以留言: "SEND ME BONUS, MY USERNAME IS..." 您也可以在首次购买时使用优惠码: SOCNET (85 折优惠) 联系方式与支持: ➡ Telegram: https://t.me/socnet_support ➡ Telegram 频道: https://t.me/accsforyou_shop ➡ WhatsApp: https://wa.me/79051904467 ➡ WhatsApp 频道: https://whatsapp.com/channel/0029Vau0CMX002TGkD4uHa2n ➡ Discord: socnet_support ➡ Discord 服务器: https://discord.gg/y9AStFFsrh ➡ ✉ 邮箱: solomonbog@socnet.store 通过以上联系方式您还可以: — 咨询批发采购 — 建立合作关系 (当前合作伙伴: https://socnet.bgng.io/partners) — 成为我们的供应商 SocNet – 数字商品与高级订阅商店
    • 价格更新 – TikTok 账号与新产品. 在流量套利中,TikTok 账号起着关键作用。广告活动的成功以及套利者的收益直接取决于账号的质量。可靠且高质量的账号能够在推广中提供稳定性、信任和长期效果。 在我们这里,您只会找到经过验证的 TikTok 账号,适合开展广告投放、扩展受众和扩大收益。正确选择账号是高效套利的基础! 我们网上商店的完整产品目录: 账号: Telegram、Facebook、Reddit、Twitter (X)、Instagram、YouTube、TikTok、Discord、VK、LinkedIn、GitHub、Snapchat、Gmail、邮箱账号 (Outlook、Firstmail、Rambler、Onet、Gazeta、GMX、Yahoo、Proton、Web.de)、Google Voice、Google Ads 高级订阅: Telegram Premium、Twitter Premium X、YouTube Premium、Spotify Premium、Netflix Premium、Discord Nitro、ChatGPT Plus/PRO、XBOX Game Pass 附加服务: Telegram Stars、代理 (IPv4、IPv6、ISP、移动)、VPN (Outline、WireGuard 等)、VDS/RDP 服务器 优惠码: AUGUST2025 (九折优惠) 支付方式: 银行卡 · 加密货币 · 其他常用方式 相关链接: ➡ 网店: 点击 ➡ Telegram 机器人: 点击 ➡ SMM 面板: 点击 – 推广您的社交媒体账号 使用我们的 SMM 面板 可提升 Facebook、Instagram、Telegram、Spotify、Soundcloud、YouTube、Reddit、Threads、Kick、Discord、LinkedIn、Likee、VK、Twitch、Kwai、Reddit、网站流量、TikTok、Trust Pilot、Apple Music、Tripadvisor、Snapchat 及其他数字产品。 首次体验 SMM 面板可获得 1 美元:只需在 我们的网站 (支持) 提交工单,主题填写 “Get Trial Bonus”。 更新后的TikTok 账号种类与价格调整: TIKTOK 新账号 TikTok 蓝 V 认证账号 | 真实账号,拥有真实粉丝与互动 | 官方认证 | 当前价格: $2500 TikTok 高质量新自动注册账号 | 国家:美国和欧洲 | 完整访问权限 (包含邮箱) | 起价 $0.2 TIKTOK – 空号自动注册 II 通过 @RAMBLER.RU/@FIRSTMAIL 验证 II 包含邮箱,使用 RU IP 注册 | 起价 $0.1 自动注册 TikTok 账号 II 通过 rambler.ru 邮箱验证,包含邮箱 II 性别混合 II 拉丁名 II 空白资料 II 使用混合 IP 注册 | 起价 $0.1 粉丝账号 自动注册 TikTok 账号 II 100+ 粉丝 II 通过邮箱验证 @hotmail/@outlook/@firstmail/@rambler,包含有效邮箱 II 性别混合 II 拉丁名 II 使用混合 IP 注册 | 起价 $0.39 自动注册 TikTok 账号 II 1000+ 粉丝 II 邮箱验证,包含有效邮箱 II 性别混合 II 拉丁名 II 支持开播+可加链接 II 使用混合 IP 注册 | 起价 $2.5 自动注册 TikTok 账号 II 5000 粉丝 II 邮箱验证,包含有效邮箱 II 性别混合 II 拉丁名 II 支持开播+可加链接 II 使用混合 IP 注册 | 起价 $10 自动注册 TikTok 账号 II 10,000+ 粉丝 II 邮箱验证,包含有效邮箱 II 性别混合 II 拉丁名 II 支持开播+可加链接 II 使用混合 IP 注册 | 起价 $19 老号 (有/无粉丝) TikTok 高质量老号 | 年份:2022-2024 | 国家:混合 | 完整访问权限 (包含邮箱) | 起价 $0.35 TikTok 高质量老号 (粉丝数量 100-10,000 可选) | 年份:2022-2024 | 国家:混合 | 完整访问权限 (包含邮箱) | 起价 $0.89 TIKTOK 广告账号 TIKTOK 广告账号 | 区域:欧洲 | 预付 | 手工注册 | 邮箱访问 + Cookies + VAT 信息 | 起价 $1 TIKTOK 广告账号 | 区域:美国 | 预付 | 手工注册 | 邮箱访问 + Cookies + VAT 信息 | 起价 $1 TIKTOK 广告账号 | 区域:美国 | 企业认证 + 后付 | 手工注册 | 邮箱访问 + Cookies + VAT 信息 | 起价 $3.5 TIKTOK 广告账号 | 区域:欧洲 | 企业认证 + 后付 | 手工注册 | 邮箱访问 + Cookies + VAT 信息 | 起价 $3.5 TIKTOK 广告账号 | 区域:欧洲 | 后付+企业中心 | 3 个广告账户 + 1 个个人账户 | 可能包含 $20-$100 广告优惠券 | 手工注册 | 邮箱访问 + Cookies + VAT 信息 | 起价 $8 TIKTOK 广告账号 | 区域:美国 | 后付+企业中心 | 3 个广告账户 + 1 个个人账户 | 可能包含 $20-$100 广告优惠券 | 手工注册 | 邮箱访问 + Cookies + VAT 信息 | 起价 $8 老客户 – 额外 折扣 和 优惠码! 9–8 折 或 注册赠送 $1 如果您想获得注册赠送 $1 或首次购买享受 9–8 折优惠,可以留言: "SEND ME BONUS, MY USERNAME IS..." 您也可以在首次购买时使用优惠码: SOCNET (85 折优惠) 联系方式与支持: ➡ Telegram: https://t.me/socnet_support ➡ Telegram 频道: https://t.me/accsforyou_shop ➡ WhatsApp: https://wa.me/79051904467 ➡ WhatsApp 频道: https://whatsapp.com/channel/0029Vau0CMX002TGkD4uHa2n ➡ Discord: socnet_support ➡ Discord 服务器: https://discord.gg/y9AStFFsrh ➡ ✉ 邮箱: solomonbog@socnet.store 通过以上联系方式您还可以: — 咨询批发采购 — 建立合作关系 (当前合作伙伴: https://socnet.bgng.io/partners) — 成为我们的供应商 SocNet – 数字商品与高级订阅商店
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock