Jump to content

Recommended Posts

Posted

Hello everyone, it's been a while since i shared something, that's because i didn't have any nice ideas to do something.

While i was bored today i made a script which will show the time from the country you choose. Example: .Greece

 

It's a voicedcommand and the defaults i've put are

Greece, China, Moscow, India, New York, Chicago, Mexico, Los Angeles, Paris, London, Sao Paulo.

Of course you can add more.

 

I took the idea from here and i thought why to use a client mod when it can easily be done through java.

 

Something else you should keep in mind, the clock sets itself from the calendar of your computer. It is setted to work at GMT+2, if your clock is different than that then you'll have to change the added hours.

 

Made on latest l2jfree core, of course can work on other aswell.

The author is me, fakoykas.

 

2r4sppe.jpg

 

Index: I:/workspace/l2jfree-core/src/main/java/com/l2jfree/gameserver/handler/VoicedCommandHandler.java
===================================================================
--- I:/workspace/l2jfree-core/src/main/java/com/l2jfree/gameserver/handler/VoicedCommandHandler.java	(revision 8052)
+++ I:/workspace/l2jfree-core/src/main/java/com/l2jfree/gameserver/handler/VoicedCommandHandler.java	(working copy)
@@ -22,6 +22,7 @@
import com.l2jfree.gameserver.handler.voicedcommandhandlers.Hellbound;
import com.l2jfree.gameserver.handler.voicedcommandhandlers.Mail;
import com.l2jfree.gameserver.handler.voicedcommandhandlers.Offline;
+import com.l2jfree.gameserver.handler.voicedcommandhandlers.RealTime;
import com.l2jfree.gameserver.handler.voicedcommandhandlers.Report;
import com.l2jfree.gameserver.handler.voicedcommandhandlers.VersionInfo;
import com.l2jfree.gameserver.handler.voicedcommandhandlers.Wedding;
@@ -49,6 +50,7 @@
		registerVoicedCommandHandler(new Hellbound());
		registerVoicedCommandHandler(new Mail());
		registerVoicedCommandHandler(new Offline());
+		registerVoicedCommandHandler(new RealTime());
		registerVoicedCommandHandler(new Report());
		registerVoicedCommandHandler(new VersionInfo());
		registerVoicedCommandHandler(new Wedding());
Index: I:/workspace/l2jfree-core/src/main/java/com/l2jfree/gameserver/handler/voicedcommandhandlers/RealTime.java
===================================================================
--- I:/workspace/l2jfree-core/src/main/java/com/l2jfree/gameserver/handler/voicedcommandhandlers/RealTime.java	(revision 0)
+++ I:/workspace/l2jfree-core/src/main/java/com/l2jfree/gameserver/handler/voicedcommandhandlers/RealTime.java	(revision 0)
@@ -0,0 +1,39 @@
+/*
+* This program is free software: you can redistribute it and/or modify it under
+* the terms of the GNU General Public License as published by the Free Software
+* Foundation, either version 3 of the License, or (at your option) any later
+* version.
+* 
+* This program is distributed in the hope that it will be useful, but WITHOUT
+* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+* details.
+* 
+* You should have received a copy of the GNU General Public License along with
+* this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+package com.l2jfree.gameserver.handler.voicedcommandhandlers;
+
+import java.util.Calendar;
+
+import com.l2jfree.gameserver.handler.IVoicedCommandHandler;
+import com.l2jfree.gameserver.model.actor.instance.L2PcInstance;
+
+/** 
+ * @author fakoykas
+ *
+ * this class...
+ * shows the time of the country the caller chooses
+ */
+
+public class RealTime implements IVoicedCommandHandler
+{
+	private static final String[]	VOICED_COMMANDS	= 
+	{ "Greece", "China", "Moscow", "India", "New_York", "Chicago", "Mexico", "Los_Angeles", "Paris", "London", "Sao_Paulo"};
+	
+	public boolean useVoicedCommand(String command, L2PcInstance activeChar, String text)
+	{
+		Calendar time = Calendar.getInstance();
+		if (command.startsWith("Greece"))
+			activeChar.sendMessage("The current time at "+command+" is "+ time.getTime());
+
+		if (command.startsWith("China"))
+		{
+			time.add(Calendar.HOUR, 6);
+			activeChar.sendMessage("The current time at "+command+" is "+ time.getTime());
+		}
+		
+		if (command.startsWith("Moscow"))
+		{
+			time.add(Calendar.HOUR, 1);
+			activeChar.sendMessage("The current time at "+command+" is "+ time.getTime());
+		}
+		
+		if (command.startsWith("India"))
+		{
+			time.add(Calendar.HOUR, 3);
+			time.add(Calendar.MINUTE, 30);
+			activeChar.sendMessage("The current time at "+command+" is "+ time.getTime());
+		}
+		
+		if (command.startsWith("New_York"))
+		{
+			time.add(Calendar.HOUR, -10);
+			activeChar.sendMessage("The current time at New York is "+ time.getTime());
+		}
+		
+		if (command.startsWith("Chicago") || command.startsWith("Mexico"))
+		{
+			time.add(Calendar.HOUR, -9);
+			activeChar.sendMessage("The current time at "+command+" is "+ time.getTime());
+		}
+		
+		if (command.startsWith("Los_Angeles"))
+		{
+			time.add(Calendar.HOUR, -7);
+			activeChar.sendMessage("The current time at Los Angeles is "+ time.getTime());
+		}
+		
+		if (command.startsWith("Paris"))
+		{
+			time.add(Calendar.HOUR, -1);
+			activeChar.sendMessage("The current time at "+command+" is "+ time.getTime());
+		}
+		
+		if (command.startsWith("London"))
+		{
+			time.add(Calendar.HOUR, -2);
+			activeChar.sendMessage("The current time at "+command+" is "+ time.getTime());
+		}
+		
+		if (command.startsWith("Sao_Paulo"))
+		{
+                       // the time of Sao Paulo is wrong and i'm too lazy to find the correct one. Do it yourself :D
+			time.add(Calendar.HOUR, -12);
+			activeChar.sendMessage("The current time at Sao Paulo is "+ time.getTime());
+		}
+		
+		return true;
+	}
+	
+	public String[] getVoicedCommandList()
+	{
+		return VOICED_COMMANDS;
+	}
+}

 

Best Regards.

Posted

yea when i saw that topic first i though it was a java share.. then i saw it was client side :/ lol and indeed its better on java.

 

btw if the time on server machine is wrong then also the times will be wrong using this but oh well.. who has wrong time on a computer :P

Posted

yea when i saw that topic first i though it was a java share.. then i saw it was client side :/ lol and indeed its better on java.

 

btw if the time on server machine is wrong then also the times will be wrong using this but oh well.. who has wrong time on a computer :P

Yeah i mentioned that on my first post "Something else you should keep in mind, the clock sets itself from the calendar of your computer.", but you are right, who has wrong time on pc? ;D

Posted

Thanks for ALL your comments guys.. Hotman i pmed you.

And yeah Calendar is a really usefull tool, if you get familiar with it you'll love it. Too bad it's not used that much on l2j.

 

Smart and usefull, gratulations dude, fantastic idea!

 

offtopic: whats up with your sign ? lol.

Bandwidth reached at photobucket. Will be back soon ;D

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

    • How much would something like thos cost for H5? Im not a developer just want something like so i could play alone on my server, and i need it to be easy to instal ;3
    • The service is developing step by step to be convenient and reliable for every user. 🤝 We strive to build a strong foundation for long-term and comfortable cooperation, so you can rely on us and get consistent results. 🌟 Our goal is long-term relationships with every user, creating a solid base for stable work with our service. 📌 Website: vibe-sms.net 📲 Our Telegram channel: https://t.me/vibe_sms    
    • datapack + login server + gameserver for personal use doesnt have to be fancy 
    • 最优质的 Reddit 账号,专为想要影响舆论而不仅仅是阅读的人准备。 在互联网上,重要的不仅仅是观点,还有声誉。在 Reddit 上,声誉以业力值(Karma)衡量——只有少数人才能获得真正有分量的话语权。 对于企业家、营销人员、投资者和意见领袖来说,高业力账号能打开通往那些制定趋势、孕育创意、驱动数百万人的社区之门。 成为别人愿意倾听的人。推广产品、测试想法、塑造舆论——并且以强势的姿态去做。 为什么这很重要: 高业力不仅仅是你个人资料上的一个数字,它是一种能换取信任的工具。而信任是一种可以换取一切的货币。 我们的在线商店产品: 账号: 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、Mobile)、VPN(Outline、WireGuard 等)、VDS/RDP 服务器 优惠码: AUGUST2025(九折优惠) 支付方式: 银行卡 · 加密货币 · 其他常用方式 购买方式: 在线商店:点击  Telegram 机器人:点击  其他服务: SMM 面板:点击 - 社交账号推广服务 使用我们的SMM面板可进行推广:Facebook、Instagram、Telegram、Spotify、Soundcloud、YouTube、Reddit、Threads、Kick、Discord、LinkedIn、Likee、VK、Twitch、Kwai、网站流量、TikTok、Trust Pilot、Apple Music、Tripadvisor、Snapchat 等等 首次试用SMM面板可获得$1奖励: 只需在我们网站提交一个主题为“Get Trial Bonus”的工单(Support) 产品列表: Reddit Karma Brute Account | 1 KARMA | 仅限 Cookies 访问(密码可能无效)| 最便宜的账号 | 起价:$1 Reddit Karma Brute Account | 20-100 发帖和评论业力 | 混合 IP 注册 | 格式:USERNAME: PASSWORD:EMAIL:MAILPASS | 起价:$5 Reddit Karma Brute Account | 500-1000 发帖和评论业力 | 混合 IP 注册 | 格式:USERNAME: PASSWORD:EMAIL:MAILPASS | 起价:$9 Reddit Karma Brute Account | 1000 发帖业力 + 100 评论业力 | 混合 IP 注册 | 格式:USERNAME: PASSWORD:EMAIL:MAILPASS | 起价:$15 Reddit Karma Brute Account | 2000 发帖业力 + 100 评论业力 | 混合 IP 注册 | 格式:USERNAME: PASSWORD:EMAIL:MAILPASS | 起价:$20 Reddit Karma Brute Account | 3000 发帖业力 + 100 评论业力 | 混合 IP 注册 | 格式:USERNAME: PASSWORD:EMAIL:MAILPASS | 起价:$25 Reddit Karma Brute Account | 5000 发帖业力 + 100 评论业力 | 混合 IP 注册 | 格式:USERNAME: PASSWORD:EMAIL:MAILPASS | 起价:$35 Reddit Karma Brute Account | 10000+ 业力 | 混合 IP 注册 | 格式:USERNAME: PASSWORD:EMAIL:MAILPASS(包含并可用邮箱)| 起价:$45 Reddit Karma Brute Account | 20000 业力 | 混合 IP 注册 | 格式:USERNAME: PASSWORD:EMAIL:MAILPASS(包含并可用邮箱)| 起价:$60 Reddit Karma Brute Account | 50000+ 业力 | 混合 IP 注册 | 格式:USERNAME: PASSWORD:EMAIL:MAILPASS(包含并可用邮箱)| 起价:$90 Reddit Karma Brute Account | 100000+ 业力 | 混合 IP 注册 | 格式:USERNAME: PASSWORD:EMAIL:MAILPASS(包含并可用邮箱)| 起价:$149 忠实客户 — 额外折扣与优惠码! 九折至八折优惠或注册即送 $1 奖励 如果您想获得注册奖励 $1 或 首次购买九折至八折优惠,您可以留言: "请发给我奖励, 我的用户名是..." 您也可以在所有我们的商店首次购买时使用优惠码:"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