Jump to content

Recommended Posts

Posted

L2 Account Master

 

Information:


L2 Account Master is an application that can help you create or update accounts on your server easily.

The algorithm for password encoding of the accounts is embedded into the application.

You can also update the accounts with the new password just with a single click.

Its also a great replacement for the normal SQLAccountManager script.

Many new features are coming.


 

Screenshots:


15gxtti.png


 

Downloads:


Download


 

Source:

Imports L2_Account_Master.IniFile
Imports System.Security.Cryptography

Public Class Form1
   Private version As String = "0.3beta"
   Private title As String = "L2 Account Master " & version
   Private Connection As New MySql.Data.MySqlClient.MySqlConnection
   Private Command As New MySql.Data.MySqlClient.MySqlCommand
   Private Adapter As New MySql.Data.MySqlClient.MySqlDataAdapter
   Private config As String = Application.StartupPath & "\config.ini"
   Private connectionstring As String

   Public Function RecreateINI()
       If IO.File.Exists(config) Then
       Else
           IO.File.CreateText(config)
       End If
   End Function

   Private Function Encode(ByVal value As String) As String
       Dim sha As SHA1 = New SHA1Managed()
       Dim encDataByte As Byte() = New Byte(value.Length - 1) {}
       Return Convert.ToBase64String(sha.ComputeHash(System.Text.Encoding.UTF8.GetBytes(value)))
   End Function

   Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
       Me.Text = title
       Command.Connection = Connection
   End Sub

   Private Sub CheckBox1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBox1.CheckedChanged
       If CheckBox1.Checked = True Then
           TextBox9.PasswordChar = Nothing
       Else
           TextBox9.PasswordChar = "*"
       End If
   End Sub

   Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
       If Connection.State = ConnectionState.Open Then
           mysqlconnstatus.Text = "Active"
           mysqlconnstatus.ForeColor = Color.Green
           ToolStripStatusLabel2.Visible = False
           Button6.Enabled = False
       Else
           Button6.Enabled = True
           ToolStripStatusLabel2.Visible = True
           mysqlconnstatus.Text = "Inactive"
           mysqlconnstatus.ForeColor = Color.Red
       End If
   End Sub

   Private Sub ToolStripStatusLabel2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ToolStripStatusLabel2.Click
       TabControl1.SelectedTab() = TabControl1.TabPages(2)
   End Sub

   Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click
       If IO.File.Exists(config) Then
           Dim ini As New IniFile(config)
           TextBox7.Text = ini.GetString("MySQL", "Hostname", "")
           TextBox8.Text = ini.GetString("MySQL", "Username", "")
           TextBox9.Text = ini.GetString("MySQL", "Password", "")
           TextBox10.Text = ini.GetString("MySQL", "Database", "")
       Else
           RecreateINI()
           Dim ini As New IniFile(config)
           ini.WriteString("MySQL", "Hostname", TextBox7.Text)
           ini.WriteString("MySQL", "Username", TextBox8.Text)
           ini.WriteString("MySQL", "Password", TextBox9.Text)
           ini.WriteString("MySQL", "Database", TextBox10.Text)
       End If
   End Sub

   Private Sub Button5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button5.Click
       If IO.File.Exists(config) Then
           Dim ini As New IniFile(config)
           ini.WriteString("MySQL", "Hostname", TextBox7.Text)
           ini.WriteString("MySQL", "Username", TextBox8.Text)
           ini.WriteString("MySQL", "Password", TextBox9.Text)
           ini.WriteString("MySQL", "Database", TextBox10.Text)
       Else
           RecreateINI()
           Dim ini As New IniFile(config)
           ini.WriteString("MySQL", "Hostname", TextBox7.Text)
           ini.WriteString("MySQL", "Username", TextBox8.Text)
           ini.WriteString("MySQL", "Password", TextBox9.Text)
           ini.WriteString("MySQL", "Database", TextBox10.Text)
       End If
   End Sub

   Private Sub Button6_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button6.Click
       connectionstring = "Server=" & TextBox7.Text & ";Database=" & TextBox10.Text & ";Uid=" & TextBox8.Text & ";Pwd=" & TextBox9.Text & ";"
       Connection.ConnectionString = connectionstring
       Try
           Connection.Open()
       Catch ex As Exception
           MsgBox(ex.Message)
       End Try
   End Sub

   Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
       TextBox1.Clear()
       TextBox2.Clear()
       TextBox3.Clear()
   End Sub

   Private Sub TabPage3_Enter(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TabPage3.Enter
       If IO.File.Exists(config) Then
           Dim ini As New IniFile(config)
           TextBox7.Text = ini.GetString("MySQL", "Hostname", "")
           TextBox8.Text = ini.GetString("MySQL", "Username", "")
           TextBox9.Text = ini.GetString("MySQL", "Password", "")
           TextBox10.Text = ini.GetString("MySQL", "Database", "")
       Else
           RecreateINI()
           Dim ini As New IniFile(config)
           ini.WriteString("MySQL", "Hostname", TextBox7.Text)
           ini.WriteString("MySQL", "Username", TextBox8.Text)
           ini.WriteString("MySQL", "Password", TextBox9.Text)
           ini.WriteString("MySQL", "Database", TextBox10.Text)
       End If
   End Sub

   Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
       If TextBox2.Text = TextBox3.Text Then
           Command.CommandText = "INSERT INTO `accounts` (`login`, `password`, `lastactive`, `accessLevel`, `lastIP`, `lastServer`) VALUES ('" & TextBox1.Text & "', '" & Encode(TextBox2.Text) & "', '1', '0', '0.0.0.0', '1')"
           MsgBox("Account created!")
           Try
               Command.BeginExecuteNonQuery()
           Catch ex As Exception
               MsgBox(ex.Message)
           End Try
       Else
           MsgBox("The two passwords don't match!", MsgBoxStyle.Critical)
       End If
   End Sub

   Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
       If TextBox4.Text = TextBox5.Text Then
           Command.CommandText = "UPDATE `accounts` SET `password`='" & Encode(TextBox5.Text) & "' WHERE (`login`='" & TextBox6.Text & "')"
           MsgBox("Account updated!")
           Try
               Command.BeginExecuteNonQuery()
           Catch ex As Exception
               MsgBox(ex.Message)
           End Try
       Else
           MsgBox("The two passwords don't match!", MsgBoxStyle.Critical)
       End If
   End Sub

   Private Sub Button7_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button7.Click
       TextBox4.Clear()
       TextBox5.Clear()
       TextBox6.Clear()
   End Sub
End Class

Public Class IniFile
   ' API functions
   Private Declare Ansi Function GetPrivateProfileString _
     Lib "kernel32.dll" Alias "GetPrivateProfileStringA" _
     (ByVal lpApplicationName As String, _
     ByVal lpKeyName As String, ByVal lpDefault As String, _
     ByVal lpReturnedString As System.Text.StringBuilder, _
     ByVal nSize As Integer, ByVal lpFileName As String) _
     As Integer
   Private Declare Ansi Function WritePrivateProfileString _
     Lib "kernel32.dll" Alias "WritePrivateProfileStringA" _
     (ByVal lpApplicationName As String, _
     ByVal lpKeyName As String, ByVal lpString As String, _
     ByVal lpFileName As String) As Integer
   Private Declare Ansi Function GetPrivateProfileInt _
     Lib "kernel32.dll" Alias "GetPrivateProfileIntA" _
     (ByVal lpApplicationName As String, _
     ByVal lpKeyName As String, ByVal nDefault As Integer, _
     ByVal lpFileName As String) As Integer
   Private Declare Ansi Function FlushPrivateProfileString _
     Lib "kernel32.dll" Alias "WritePrivateProfileStringA" _
     (ByVal lpApplicationName As Integer, _
     ByVal lpKeyName As Integer, ByVal lpString As Integer, _
     ByVal lpFileName As String) As Integer
   Dim strFilename As String

   ' Constructor, accepting a filename
   Public Sub New(ByVal Filename As String)
       strFilename = Filename
   End Sub

   ' Read-only filename property
   ReadOnly Property FileName() As String
       Get
           Return strFilename
       End Get
   End Property

   Public Function GetString(ByVal Section As String, _
     ByVal Key As String, ByVal [Default] As String) As String
       ' Returns a string from your INI file
       Dim intCharCount As Integer
       Dim objResult As New System.Text.StringBuilder(256)
       intCharCount = GetPrivateProfileString(Section, Key, _
          [Default], objResult, objResult.Capacity, strFilename)
       If intCharCount > 0 Then GetString = objResult.ToString
   End Function

   Public Function GetInteger(ByVal Section As String, _
     ByVal Key As String, ByVal [Default] As Integer) As Integer
       ' Returns an integer from your INI file
       Return GetPrivateProfileInt(Section, Key, _
          [Default], strFilename)
   End Function

   Public Function GetBoolean(ByVal Section As String, _
     ByVal Key As String, ByVal [Default] As Boolean) As Boolean
       ' Returns a boolean from your INI file
       Return (GetPrivateProfileInt(Section, Key, _
          CInt([Default]), strFilename) = 1)
   End Function

   Public Sub WriteString(ByVal Section As String, _
     ByVal Key As String, ByVal Value As String)
       ' Writes a string to your INI file
       WritePrivateProfileString(Section, Key, Value, strFilename)
       Flush()
   End Sub

   Public Sub WriteInteger(ByVal Section As String, _
     ByVal Key As String, ByVal Value As Integer)
       ' Writes an integer to your INI file
       WriteString(Section, Key, CStr(Value))
       Flush()
   End Sub

   Public Sub WriteBoolean(ByVal Section As String, _
     ByVal Key As String, ByVal Value As Boolean)
       ' Writes a boolean to your INI file
       WriteString(Section, Key, CStr(CInt(Value)))
       Flush()
   End Sub

   Private Sub Flush()
       ' Stores all the cached changes to your INI file
       FlushPrivateProfileString(0, 0, 0, strFilename)
   End Sub

End Class

 

Encryption part:

   Private Function Encode(ByVal value As String) As String
       Dim sha As SHA1 = New SHA1Managed()
       Dim encDataByte As Byte() = New Byte(value.Length - 1) {}
       Return Convert.ToBase64String(sha.ComputeHash(System.Text.Encoding.UTF8.GetBytes(value)))
   End Function

Posted

actually, I don't see anything that difficult... nor I see a reason, why it shouldn't be a freeware... it takes like 30 minutes to make one... but good luck with this app.

Posted

actually, I don't see anything that difficult... nor I see a reason, why it shouldn't be a freeware... it takes like 30 minutes to make one... but good luck with this app.

Ok make one in 30 minutes and pm me.

It took me 5 hours to make this. Plus the fixes.

The thing that i have made it simple does not mean that its easy to code too.

Posted

Stealth, I just pulled those 30 minutes out of the air... OK, one hour maybe, because what I see from the screenshots is that you have 2 sections, that are worth exploring... first one is for connection... making a connection string takes like a minute...

running additional queries takes like 5 minutes. Password encoding could be a challenge, but it wouldn't take more than 20 minutes. Making the UI would take 5-10 minutes, so yeah... it would take me about 30 minutes to an hour.

I don't know, how many resources would this app consume, because I'm working with delphi, but simple workarounds would make it less memory consuming.

Posted

You know what?Screw it , I will go open source again, even if I am just wasting my time in here and my work is ignored.

The file will be uploaded in a couple minutes.

 

EDIT: File uploaded.

EDIT2: Source uploaded.

Posted

Stealth great program,i rly approciate ur work..but when i saw that u wont share it for free i was sad.U meaned that the program will be not free for others right?anyway downloading

Posted

Stealth great program,i rly approciate ur work..but when i saw that u wont sahre it for free i was sad.U meaned that the program will be not free for others right?anyway downloading

It is for free now. Anyway.

Posted

i didn't understand how to use it,can u explain me?i have to import all the code in mysql before open program?

First of all this tool is a replacement for the old SQLAccountManager.bat.

Fill in your sql data then click connect and create/update any account.

More options coming soon.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now


  • Posts

    • L2JOne — Interlude C6 Level 86, S84 grade, clan level 11 — on an Interlude C6 core. 67 systems. Desktop Control Center. Edit the server while it runs. FULL SYSTEM CATALOGUE  ·  WEBSITE  ·  TELEGRAM Most Interlude packs give you a clean core and leave the interesting part to you. This one ships with the content already written — the economy systems, the event engine, the retention loop and the admin tooling a live server actually needs after week one. Everything is configurable from open files, and most of it is editable with the server running, from a Community Board panel or from the desktop Control Center. You should not need a new build to fix a broken skill or retune a drop rate on a Saturday night. QUICK FACTS Level cap 86, S80 and S84 grades, clan level 11 — High Five progression on an Interlude core 909 High Five items — Dynasty, Vesper and Icarus gear, Forgotten Scrolls, Dolls, Agathions 67 systems delivered ready — new, rebuilt, expanded or fixed 689 XML files — items, NPCs, skills, spawns, zones and every custom system, all open 343 quests implemented 147 GM commands, each with its own access level 95 database tables with install and versioned migration scripts 22 Community Board panels with open HTML 8 event modes that schedule themselves Java, JDK 22+, MariaDB / MySQL Desktop Control Center in English, Portuguese and Spanish HIGH FIVE CONTENT ON AN INTERLUDE CORE This is the part most Interlude packs do not have. The core is Interlude C6 — the chronicle your players know, with the combat and the pace they came for — but the progression ceiling is not the Interlude one. The end game was extended with High Five content, server side and client side. Level cap 86. The full experience table up to 86, with the rate brackets to match: five independent XP, SP and currency ranges covering 1-52, 52-61, 61-76, 76-78 and 78-86, so you shape the curve at the top instead of letting it flatten. S80 and S84 grades. Two grades above S, each with its own crystal, enchant bonus and gemstone cost — so the enchant and crystallization economy keeps working at the new ceiling instead of stopping at S. Clan level 11. Clan progression continues past the Interlude cap, with Blood Oath, Blood Alliance and Blood and Sand as the upgrade materials, and the clan skills that come with those levels. 909 High Five items. Dynasty, Vesper and Icarus weapons and armour with their augments and special abilities, 112 Forgotten Scrolls, Dolls and Agathions. High Five skill set. The skill ranges that come with the higher levels and the new gear are implemented, not stubbed — including the Doll and Agathion skills. Client tables included. The item name and grp tables for all of it ship with the pack, and the Control Center reads and repacks them. You are not left to reverse-engineer the client side of a Vesper set on your own. The practical effect: an Interlude server that does not run out of content at 80. Your players keep the chronicle they wanted and still have somewhere to go after the S set. DESKTOP CONTROL CENTER Start, restart and reload configuration Memory, GC, threads and CPU in real time Live log console and content search Database browser, scheduled backup, install and migration HWID bans and IP lookup Item editor with icon preview, plus multisell, NPC, class and config editors Item cloning, ID migration, item-pack import Reads and repacks the client itemgrp / npcgrp / skillgrp Automatic backup before every save Builds incremental updates, hash-verified per file WHAT IS INSIDE NEW = not in stock Interlude  ·  REBUILT = existed, rewritten from scratch  ·  EXPANDED = original kept, features added  ·  IMPROVED = original fixed and revised ECONOMY AND ITEMS — 11 systems Offline Shop — REBUILT. Keeps selling after the client closes, restores itself on restart, expires in a number of days you set. Own name colour and visual effect, no damage in peace zones, can be restricted to VIP only. Marketplace — NEW. Persistent market inside the Community Board. Listings stay up with the player offline, delivery is automatic, the listing fee is configurable, every sale logged. Enchant System — REBUILT. Rate per level and per scroll type in an open file. You choose what happens on failure: break, keep or drop one level. In-game editing panel, log of every attempt, automatic high-enchant announce. Custom currency — NEW. Any item as the private store currency: buy, sell and package sale, including the balance the client shows. Reward capsules — NEW. Boxes that draw items by weight, built in an open file. Event, donation and boss boxes with no code. Timed items and passes — NEW. Expire in real time, not play time, and keep counting offline. Noble, VIP, Kamaloka and auto farm passes ship ready. Equipment skins — NEW. Change the look of weapon and armour without touching a single stat. Accessory sets — NEW. The armour-set concept applied to rings, earrings and necklaces, with their own bonus. Deferred delivery — NEW. Items delivered at the player's next login, so donations, vote rewards and event prizes never get lost. Redeem coupons — NEW. GM generates a code, the player redeems it once. Campaigns, downtime compensation, streamer partnerships. Price and drop control — NEW. Single price across every merchant, all-free mode for test servers, gold bar conversion, drop block by grade on death. EVENTS AND PVP — 9 systems Event engine — NEW. Open-file catalogue: which events exist, when they open, how many players they need, what the prize is. Persistent ranking, level-balanced teams, rejoin after a disconnect. 8 event modes — NEW. Team vs Team, Deathmatch, Capture the Flag, Battle Royale with its own map, Hunting Grounds, Party, Spoil and Fight Boss. Each can run at a different time. Tournament — NEW. 1v1, 3v3, 5v5 and 9v9, solo and party registration. Per-format duration, run window, class composition limit and prize. Function zones — NEW. A whole PvP area from a single file: entry fee, auto-flag, anonymous mode, forbidden items and skills, temporary noblesse, restart lock, monster waves, a boss and automatic shutdown. Rotating siege — NEW. One castle drawn per cycle instead of nine independent schedules. The winner moves to the next castle an hour before the following siege, and no castle repeats until every other one has been fought over. Classic mode still available. Castle governor — NEW. The clan holding the active castle taxes merchants, board shop, gatekeepers and marketplace server-wide, and earns a drop, XP and skill bonus. Own vault and statue, wyvern rights for the leader. Every cap set by you. Olympiad — EXPANDED. Custom period and duration, battle limit, enchant cap in the arena, separate mage and fighter buffs, minimum PvP to enter, participant limit per IP, monthly winners. Event shop — NEW. Event currency buys prizes that exist nowhere else. Editable in-game. Anti-feed and dualbox control — NEW. XP and drop blocked on repeated same-IP kills, character limit per IP, whitelist per zone and instance, participant limit per IP with optional HWID check for events. PROGRESSION AND RETENTION — 13 systems VIP System — NEW. Tiers with their own XP/SP/drop rates, rewards and real-time duration. Benefits keep working in the offline shop, activation item configurable, status panel on the board. Daily missions — NEW. Objectives by action type, automatic scheduled reset, reward per mission, progress saved per character. Includes a daily login reward. Auto Farm — NEW. The player picks the skill list, monster priority and target type (mob, raid or grand boss), and can assist the summon or the party leader. Daily quota unlocked by a pass. You decide: everyone, VIP only, or off. Auto Potion (ACP) — NEW. Separate HP / MP / CP percentage triggers, configured in-game. Removes the incentive to run third-party software. Player-to-player buff selling — NEW. The human buffer gets its job back: advertise your own buffs, set the price, sell to whoever passes. Scheme Buffer — IMPROVED. Schemes saved per account, applied from the NPC and from the board, with a cost and skill list you control. AIO character — NEW. All-in-one character with its own buffs and saved macros, duration and type set by you. Level reward — NEW. Automatic prize on reaching each level, right where most new players give up. Rates per level bracket — NEW. Five independent brackets between 1 and 86 for XP, SP and currency, plus an exclusive rate inside instances. Subclass and skill stacking — EXPANDED. Configurable cap, switching anywhere, selective stacking across subclasses with a block list. Agathion — NEW. Companion pet that follows, talks and optionally heals by percentage. Restored at login. Pet and summon persistence — IMPROVED. Pet and servitor return after a reconnect with buffs and cooldown intact. A dropped connection stops costing ten minutes of rebuffing. Chat commands — NEW. A whole layer absent from stock Interlude: .menu .farm .acp .mission .vote .sell .register .instance .leader .crystal .recipe .aiomacro CONTENT AND WORLD — 8 systems Instanced territories — NEW. Private farm area per player or party, built from the map regions. Each region has its own monster list, respawn, entry policy and a trigger-released boss. No instance sees another, and the drop rate inside is exclusive. Spot fighting is over. Kamaloka — NEW. Instanced dungeon with its own scoring, a board ranking and an entry pass as an item. Simulated players — NEW. Server-controlled characters with combat, healing and potion AI, town walking routes and template clans. Visible in /who. A freshly opened server stops looking empty. Champion mobs — EXPANDED. Own HP, attack and speed, configurable aura, multiplied XP/SP/drop, exclusive drop list, optional guaranteed enchant. Boss info and reward — NEW. Schedule and status on the board, participation reward per raid, raid points to the clan, loot protection, grand boss death announce. Original Interlude content — IMPROVED. 343 quests, 9 castles with working sieges, 44 clan halls with auction and functions, Seven Signs, Festival of Darkness, manor, fishing. Grand boss AI revised — Antharas, Baium, Frintezza, Sailren. Polymorph — NEW. Visual transformation of players and NPCs from an open file. Seasonal events — NEW. Mammon Spawn and Master of Enchanting as calendar scripts. COMMUNITY BOARD — 22 panels Player panel — NEW. Board home with server info, rules, active promotions and a shortcut to every other panel. Server shop — NEW. A merchant inside the board, prices subject to the ruling clan's tax. Rankings — NEW. PvP, PK, level, clan raid points, Kamaloka score and event ranking — six lists updated live, with automatic weekly prizes. Donation panel — NEW. Balance, product and delivery on the character, integrated with the website system. Every delivery logged. Party matching — NEW. A party noticeboard by level, class and goal. Live information panels — NEW. Boss schedules, active events, open instances and territories, governor panel, channel videos with a watch reward, vote reward. All read from the real server state. Forum, mail and friends — IMPROVED. Internal forum, character mail, friend list, favourites and a personal memo. All panel HTML is open — change the visual identity with no recompile. ADMINISTRATION — 7 systems Operations panel — NEW. The desktop Control Center described above. Visual content editors — NEW. Items with icon preview, plus multisell, NPC, class and configuration editors. Item cloning, ID migration, item pack import, automatic backup before every save. Client file editor — NEW. itemgrp / npcgrp / skillgrp read, edit and repack, with ID migration synchronized between server and client. Adding a custom item stops being a manual process across three tools. In-game editors — NEW. Balance, event engine, function zones, territories and system config edited from a board panel, applied without restart, automatic backup of every changed file. GM commands — EXPANDED. 147 commands with per-command access level: zone creation by vertices in-game, spawns saved to the database, NPC route editor with preview, event / balance / enchant panels, HWID management. Persistent configuration — NEW. What the GM changes from the panel is stored and reapplied at next boot. Update package — NEW. The build ships only what changed, hash-verified per file, ready to publish to your players. SECURITY AND PROMOTION — 6 systems Guard and HWID — NEW. Validation at startup, machine identification, window limit per machine, configurable grace mode, access log per account, ban and lookup by GM command. Discord logging — NEW. 28 channels: enchant, drop, pickup, trade, warehouse, multisell, donation, Olympiad results, grand boss deaths, player and GM logins, suspicious IP alerts, chat keyword filter. When a player complains about a missing item, the answer is in the channel. Vote reward — NEW. 8 top lists, individual reward, per-site cooldown, global vote goal with a collective prize. YouTube integration — NEW. Turns your player base into your channel audience. Full section below. Announcements and promotions — NEW. Rotating in-game announces, time-boxed promotions with a board panel. Build protection — NEW. Obfuscation plus optional class encryption with its own loader. YOUTUBE — TURN YOUR PLAYERS INTO YOUR CHANNEL AUDIENCE Most packs call "YouTube integration" a button that opens a link. This one is a closed loop between your channel and the game, and the player never leaves the client. 1. Your channel, inside the game. The server queries the YouTube Data API and rewrites its own video list — title, description and publish date. You never maintain a list by hand: publish on YouTube and the panel updates itself. Players search it and pick what to watch. 2. The video plays inside the client. No alt-tab, no browser, nobody logs out to watch. The server reads the real duration of that video from YouTube and sets the timer to that exact length — the message on screen says how long is left. The player is held away for the duration, so watching is watching, not a tab left open in the background. 3. Watch time, not clicks. This is the part that matters for a channel. A click that bounces after three seconds does nothing for you. What reaches your channel here is a completed view, because the reward only exists if the video runs to the end. 4. The reward lands automatically. Items go straight to the character with an on-screen confirmation and a chat line naming the video. The reward items are yours to configure. Every upload reaches everyone online. A new video triggers an in-game announcement with a message you write. No ad spend, no posting the link in five Discords and hoping. It becomes a habit, not a one-off spike. The daily cap resets every day, so the same players come back tomorrow. Your back catalogue keeps earning views months after publication. Abuse controls built in. One reward per video per day, a configurable daily cap across all videos, one video in progress at a time, everything stored per character in the database — relogging resets nothing. Configurable: API key, channel, how many videos to pull, whether to announce, the announcement text, the reward items and the daily reward cap. A server with 300 players online is 300 completed views on every upload. That is the difference between a channel nobody sees and a channel that grows with the server. COMBAT AND BALANCE — 6 systems Balance per class — NEW. Damage dealt and taken per class, split by attack type, edited from the board, applied without restart, automatic backup so you can roll back. Balance per skill — NEW. Power, duration and behaviour per class, without touching the original skill XML. The broken skill of the month is fixed on the spot, not in the next release. Combat caps — NEW. Hard cap on attack and cast speed, no-cooldown skill list, skill duration overridden by ID, fixed cancel time, configurable expertise penalty. Extra effects and conditions — NEW. 9 effects from later chronicles ported to Interlude, 7 new skill conditions, weapon-swap skill, skill that teaches a skill, extra targets. Servitor share — NEW. The summoner passes a percentage of their stats to the servitor. Geoengine and movement — IMPROVED. Revised pathfinding with instance support. WHAT YOU GET The distribution, compiled and licensed for your project The complete datapack — 689 XML files and the Community Board HTML, open to edit Database scripts: install plus versioned migrations Desktop Control Center (EN / PT / ES) Continuous updates through the update system Direct support during setup Optional: the L2JOne Website System — player accounts, donations with automatic in-game delivery, admin dashboard, 4 payment methods, 4 languages. Sold separately, ask if you want both. HONEST NOTES Ships compiled and licensed per project. If you need full Java sources, ask up front — do not assume it is included. Guard/HWID and the build protection are real operational controls, not a promise of absolute protection. Anyone selling you "unhackable" is selling you a story. Two systems ship disabled and are still marked in-development in the config: Fake Farming and Timed Amulets. Everything else in this list is working. The game client itself is not distributed here. The item name and grp tables for the High Five content are included, and the Control Center edits itemgrp / npcgrp / skillgrp, but assembling and hosting the client is yours. CONTACT Full system catalogue: l2jone.com/fonte Website: l2jone.com Telegram: @Williams0ff E-mail: support@l2jone.com Pricing depends on the plan and on what you want bundled — message me and I will send the options. I am open to using the forum's middleman / escrow service. I have no reputation here yet, and I think asking for it is fair. Questions in the topic are welcome — I answer them here so the next person reading finds the answer too.    Scrolls Augments New Augment Acessories    
    • ⚡ Weekend special! Upgrade your personal Google account with 5TB storage and Gemini Pro in under 60 seconds.
    • Don't cry, it's a game. If it makes you cum on your monitor, of course, enjoy it. My business has been running for years and will continue to do so. No matter what happens here, the dogs bark, the caravan moves on. Start developing game engines - post them too - after all, I create them too) Salvation:Arena (MOBA) Unreal Engine RED-TEAM REVERSECODE Аліса займається розробкою ще з часів створення денді та сеги-діти які створюють шум для мене просто діти) За ці роки роботи я бачила багато різних людей у цій сфері все що я думаю про це не плачте та насолоджуйтесь життям слава ураїне - котись на свій бразильський форум)   If you'd simply asked me in a private message on the forum to be reinstated, you'd have been unblocked without a problem. I have no enemies—it's just business. I can make any product on the market, models and effects, copyrights—complex tools—at my age, people run large companies. I'm pleased that our beloved MXC* forum will now have a lot of free products. I earn a maximum of $200-$300 a year from this industry. If that excites you, well, have fun with us.       I moderate many gaming communities, here's one of them  if I hated you, you'd be out of here in a minute, brother  so don't get carried away with your wet dreams. On the topic of free work, start doing it yourself—the forum needs good free stuff. Someone will definitely like you here and throw a flower on your grave. Besides, you're forgetting that half the forum is involved in this interface development business and for many developers, it's a good income. So, you want to make life sweeter for them all, not just for me it's actually nice that you're such a noble young man.   Besides, I usually work from behind the scenes and don't move anywhere in the market but nothing stops me from doing what others do - working from the shadows  you won't even see that I'm doing it, it's so funny.   Start doing free work. You promised to do it well and post it to communities on time. Good luck! We'll have fun, that's great!🥰   завжди приємно поспілкуватися з веселими людьми              
    • Complete development packages for Lineage 2 UI development, across all chronicles and an automated tool to update and patch Interface.u & Interface.xdat What I Offer Clean Sources: 100% clean, retail-based interface source code with zero unwanted custom modifications. Interface.u Update Tool: A standalone tool designed to patch, rebuild, and update Interface.u efficiently. Custom Modifications: Custom UI features and tailoring can be implemented upon request. Turnaround Time: Most major versions and protocols are ready for immediate delivery; other versions take up to 1 week. How It Works Let me know the specific chronicle or protocol version you are targeting. I will provide the tool, which is HWID-bound to your machine, for your setup. Once satisfied with the results, we finalize the deal. Pricing & Notes Both products are priced separately based on the target protocol and requirements. Package deals are negotiable if purchasing both. DM for inquiries, demos, and pricing quotes.    
    • Well u need to change when sm1 press exit it keeps it in game..  
  • Topics

×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..