-
Posts
63 -
Credits
0 -
Joined
-
Last visited
-
Days Won
1 -
Feedback
100%
Content Type
Articles
Profiles
Forums
Store
Everything posted by L2 TokTil
-
Discussion Prelude of War UI teleport customize
L2 TokTil replied to ryujiko's topic in Server Development Discussion [L2J]
1- open file teleportlist.dat in your folder system 2- add zone and save 3- add data teleport point in your server 4- done -
LF in need of decoded Skillgrp.dat prot 245 or prelude 3
L2 TokTil replied to darta's topic in [Request] Client Dev Help
SkillGrp -
Help Classic Client to Interlude Acis pack
L2 TokTil replied to AtheIstan's topic in [Request] Client Dev Help
he already gave you the link of full source, what you need to do is adapt the packet network in your source, no need to touch another just focus on network packet both server and client -
Need Classic 3.0 Kamael Suggestions
L2 TokTil replied to zzuurraa's question in Request Server Development Help [L2J]
https://github.com/JoeAlisson/L2jOrg/tree/development Support protocol 245 -
Source L2-Scripts(HighFive-GoD) rev20720(2268)
L2 TokTil replied to L2 TokTil's topic in Server Shares & Files [L2J]
for spawning character after creation is located in data\pc_parameters\template_data , then open template xml you want to change (example human template), then find this text <start_points> or you can use classic map, go to client folder => Maps/ then rename this file 16_24, 16_25, 17_25 to another name, then remove _classic in this file 16_24_Classic, 16_25_Classic, 17_25_Classic -
Source L2-Scripts(HighFive-GoD) rev20720(2268)
L2 TokTil replied to L2 TokTil's topic in Server Shares & Files [L2J]
cata and necro is still exist, but you need to create direct teleport / npc gatekeeper to go inside -
Source L2-Scripts(HighFive-GoD) rev20720(2268)
L2 TokTil replied to L2 TokTil's topic in Server Shares & Files [L2J]
this is a source no need to crack it, and make sure after compiling this source you replace the old one -
Source L2-Scripts(HighFive-GoD) rev20720(2268)
L2 TokTil replied to L2 TokTil's topic in Server Shares & Files [L2J]
for someone who have problem auto shot and skill list for learn, you can adapt it from shared l2-scripts zaken source, just copy paste and small change. * sadly the link source is already gone from this forum, so you need to search from another forum -
WTS L2J FANDC/L2SCRIPTS SOURCE H5
L2 TokTil replied to proGenitor's topic in Marketplace [L2Packs & Files]
Here -
Source L2-Scripts(HighFive-GoD) rev20720(2268)
L2 TokTil posted a topic in Server Shares & Files [L2J]
Download Link : L2-Scripts(HighFive-GoD)_full-source-rev20720(2268) #this source is not the last l2-scripts release, so it does not representative the last revision High Five Part 5 (With GOD support 140 protocol) Pack presented by L2-scripts.com What is this build: This is the same L2j Pack on the content as the usual High Five. The advantage of this build is that players will be able to enter the game with the latest customers, with improved graphics, interface and other delights of modern graphics. In fact, it is everyone's favorite High Five, but with a modern visual performance. Players will be able to enter the game by the following clients: 1. Original high Five client (268 and 273 Protocol) 2. Client Salvation (140 Protocol) Rev. 20720/2268 * Fix display of change the HP/MP of the target; * Fix macro operation; * Inventory work fix; * The correct order of packet when you enter the game; + Implemented the study of skills through the interface (configurable); * Fixed learning skills through NPC; * * * -
Help Devs tool - Fafurion/L2Classic
L2 TokTil replied to AtheIstan's topic in [Request] Client Dev Help
-
LF Looking for System 235 NA/Eng
L2 TokTil replied to L2 TokTil's topic in [Request] Client Dev Help
the different is in point in l2store (item mall) in -eu its count with euro with format x.xx (example 2.55 euro, in -e is count 255 NCoin) in -e its without dot(.), so 25 NCoin show as 0.25 euro in -eu or can you share guide how to remove dot(.) in euro format ? * of course i can edit price value in datapack item mall to suited with eu client, * maybe some one have a backup -e client protocol 235 thanks -
LF Looking for System 235 NA/Eng
L2 TokTil replied to L2 TokTil's topic in [Request] Client Dev Help
thanks for your replay, but im looking system with -e extention not -eu downloaded from lineage2.com -
Looking for System 235 NA/Eng Original/Patched Thanks
-
1. go to https://maxcheaters.com/forum/41-client-development-discussion/ 2. read all topic with tags guide, 3. start your project, if you have problem then write in help section. * no one will help you, if you don't know anything
-
LF L2PE (Properties Editor) Tool Request
L2 TokTil replied to AtheIstan's topic in [Request] Client Dev Help
https://github.com/acmi -
Help L2j Architecture
L2 TokTil replied to Sinistroyer's question in Request Server Development Help [L2J]
first you need to go to this link, then choose random source and run in your local server to know better about server structure (for this you need to know java), then learn how to datapack connected with server (about parsing and db) -
Help RequestSellItem.java
L2 TokTil replied to HARDECORE's question in Request Server Development Help [L2J]
when you change total price to 1, it worse because all item stackable example (11 piece item) is still 1 adena in total, if we want to antisipation adena population we can change price per item to this totalPrice = SafeMath.addAndCheck(totalPrice, SafeMath.mulAndCheck((item.getReferencePrice() / "your rate setting"), count) / 2); <= this code from my pack so maybe diff from another pack or item.getReferencePrice(), count)/ "your rate setting" *"your rate setting" = like item drop rate so all item still have uniqe price not 1 adena, to antisipation player to make trash in every town floor <= still can be anticipation to make all item drop by player destroy by xx sec like drop by monster #Still newbee, correct me if im wrong -
Help RequestSellItem.java
L2 TokTil replied to HARDECORE's question in Request Server Development Help [L2J]
change that to long price = 1; -
you can look example code from admin command handler "handlers.admincommandhandlers" from your sources, try search in this file "sysstring-**.dat"
-
you can use this, or if you only need add static mesh you can use this https://github.com/acmi/L2smr
-
is simple way int _add = 0; if(activechar.hasPremiumAccount()) _add = 1; content = content.replace("%ratexp%", String.valueOf(Math.round(Config.RATE_XP + _add))); content = content.replace("%ratesp%", String.valueOf(Math.round(Config.RATE_SP + _add))); content = content.replace("%ratedrop%", String.valueOf(Math.round(Config.RATE_DROP_ITEMS + _add)));
-
give them a proof video record or video live link, if you can't, to me you look like spammer user to make that server look good
-
Source H5 L2Mythras Files - Sources, Compiled, Geo, Patch.
L2 TokTil replied to Akar0's topic in Server Shares & Files [L2J]
after you edited, then compile your scripts or just delete original scripts.jar, this pack run both compiled scripts.jar and folder scripts (java file)