Jump to content

Recommended Posts

Posted

Tested on ct2.2, not sure if packets changes beforehand or anything after.

 

Well its pretty simple, I made a script with l2.net that allows you to create characters with names that are usually blocked by the client.

 

Example

 

http://img166.imageshack.us/my.php?image=59690230zs1.jpg

 

 

Some of you might say "how did you find that out anyways...." Well... I was trying to create a character with a simple name like... red, blue, white.... those 3 were already picked. So, having that in mind I was like well whats another cool color.... oh yea... "black" and I guess "black" is known as a racial slur. So I tried my script and it worked, my character was created with a new cool name!

 

 

HOW TO: Connect via l2.net, guides to login can be found at www.ltwonet.com

 

The main topic is http://ltwonet.com/showthread.php?t=829

 

Its pretty simple, change the name, edit the character to your liking.... log in until you get to the character screen and bingo. Your in!

 

Script is:

/////////////////////////Create a character with l2.net OOG//////////////////////////////////////
/////////////////////////Ltwonet.com for more scripts!////////////////////////////////////////////

DEFINE bytebuffer my_bb 256

//Write desired name here no more then 16 characters...
DEFINE STRING NAME1 "mpj123OWNS"

//1 = HUMAN/// 2 = ELF/// 3 = DARK ELF/// 4 = ORC/// 5 = DWARF/// 6 = KAMAEL
DEFINE INT RACE 2

// 1 = male  2 = female
DEFINE INT SEX 2

//1 = fighter   2 = mage
DEFINE INT MAGEorFIGHTER 2

//1 = A 2 = B  3 = C... etc
//HairStyle.... 1 - 7 for females 1 - 5 for males
//HairColor... 1 - 4 for everyone but Kamael.... Kamael 1 - 3
//Face 1 - 3 for all
DEFINE INT HairStyle 2
DEFINE INT HairColor 2
DEFINE INT FACE 2



//DO NOT TOUCH UNLESS YOU ARE FIXING THIS SCRIPT
//Buffering 0C
my_bb.write_byte #i12
//Buffering desired name
my_bb.write_string NAME1
//Buffering race/character sex/type
CALLSUB RACE
CALLSUB SEX
CALLSUB MAGFIG
//Buffering 1C 00 00 00 27 00 00 00 1E 00 00 00 1B 00 00 00 23 00 00 00 0B 00 00 00
my_bb.WRITE_INT32 #i28
my_bb.WRITE_INT32 #i39
my_bb.WRITE_INT32 #i30
my_bb.WRITE_INT32 #i27
my_bb.WRITE_INT32 #i35
my_bb.WRITE_INT32 #i11
//finalizing
CALLSUB HAIRSTYLE
CALLSUB HAIRCOLOR
CALLSUB FACE
PRINT_TEXT "get to here last only"

PRINT_TEXT "Injecting create character packet"
INJECT "13"
SLEEP 100
PRINT_TEXT "Injecting MAIN create character packet"
my_bb.TRIM_TO_INDEX
injectbb my_bb
SLEEP 100
PRINT_TEXT "Injecting confirmation create character packet"
INJECT "D0 39 00"

SCRIPT_END

DELAY 5000
PRINT_TEXT "Shouldn't get to this point."
SUB RACE
PRINT_TEXT "1"
SWITCH RACE
CASE #i1
   my_bb.WRITE_INT32 #i0
BREAK 1
CASE #i2
   my_bb.WRITE_INT32 #i1
BREAK 1
CASE  #i3
   my_bb.WRITE_INT32 #i2
BREAK 1
CASE #i4
   my_bb.WRITE_INT32 #i3
BREAK 1
CASE #i5
   my_bb.WRITE_INT32 #i4
BREAK 1
CASE  #i6
   my_bb.WRITE_INT32 #i5
BREAK 1
DEFAULT
   my_bb.WRITE_INT32 #i0
BREAK 1
ENDSWITCH
RETURNSUB


PRINT_TEXT "Shouldn't get to this point."
SUB SEX
PRINT_TEXT "2"
IF RACE >= #i5
   my_bb.WRITE_INT32 #i0
   RETURNSUB
ENDIF
SWITCH SEX
CASE #i1
   my_bb.WRITE_INT32 #i0
BREAK 1
CASE #i2
   my_bb.WRITE_INT32 #i1
BREAK 1
DEFAULT
   my_bb.WRITE_INT32 #i0
BREAK 1
ENDSWITCH
RETURNSUB


PRINT_TEXT "Shouldn't get to this point."
SUB MAGFIG
PRINT_TEXT "3"
SWITCH RACE
CASE #i1
   IF MAGEorFIGHTER <= #i1
       my_bb.WRITE_INT32 #i0
   ENDIF
   IF MAGEorFIGHTER >= #i2
       my_bb.WRITE_INT32 #i10
   ENDIF    
BREAK 1
CASE #i2
    IF MAGEorFIGHTER <= #i1
       my_bb.WRITE_INT32 #i18
   ENDIF
   IF MAGEorFIGHTER >= #i2
       my_bb.WRITE_INT32 #i25
   ENDIF    
BREAK 1
CASE #i3
    IF MAGEorFIGHTER <= #i1
       my_bb.WRITE_INT32 #i31
   ENDIF
   IF MAGEorFIGHTER >= #i2
       my_bb.WRITE_INT32 #i38
   ENDIF    
BREAK 1
CASE #i4
    IF MAGEorFIGHTER <= #i1
       my_bb.WRITE_INT32 #i44
   ENDIF
   IF MAGEorFIGHTER >= #i2
       my_bb.WRITE_INT32 #i49
   ENDIF    
BREAK 1
CASE #i5
   my_bb.WRITE_INT32 #i53
BREAK 1
CASE #i6
   my_bb.WRITE_INT32 #i123
BREAK 1
DEFAULT
   my_bb.WRITE_INT32 #i0
BREAK 1
ENDSWITCH
RETURNSUB


PRINT_TEXT "Shouldn't get to this point."
SUB HAIRSTYLE
PRINT_TEXT "4"
IF SEX <= #i1
SWITCH HairStyle
CASE #i1
   my_bb.WRITE_INT32 #i0
BREAK 1
CASE #i2
   my_bb.WRITE_INT32 #i1
BREAK 1
CASE #i3
   my_bb.WRITE_INT32 #i2
BREAK 1
CASE #i4
   my_bb.WRITE_INT32 #i3
BREAK 1
CASE #i5
   my_bb.WRITE_INT32 #i4
BREAK 1
DEFAULT
   my_bb.WRITE_INT32 #i0
BREAK 1
ENDSWITCH
ENDIF


IF SEX >= #i2
SWITCH HairStyle
CASE #i1
   my_bb.WRITE_INT32 #i0
BREAK 1
CASE #i2
   my_bb.WRITE_INT32 #i1
BREAK 1
CASE #i3
   my_bb.WRITE_INT32 #i2
BREAK 1
CASE #i4
   my_bb.WRITE_INT32 #i3
BREAK 1
CASE #i5
   my_bb.WRITE_INT32 #i4
BREAK 1
CASE #i6
   my_bb.WRITE_INT32 #i5
BREAK 1
CASE #i7
   my_bb.WRITE_INT32 #i6
BREAK 1
DEFAULT
   my_bb.WRITE_INT32 #i0
BREAK 1
ENDSWITCH
ENDIF
RETURNSUB


PRINT_TEXT "Shouldn't get to this point."
SUB HAIRCOLOR
PRINT_TEXT "5"
IF RACE >= #i6
   IF SEX <= #i1
       SWITCH HairColor
       CASE #i1
           my_bb.WRITE_INT32 #i0
       BREAK 1
       CASE #i2
           my_bb.WRITE_INT32 #i1
       BREAK 1
       CASE #i3
           my_bb.WRITE_INT32 #i2
       BREAK 1
       DEFAULT
           my_bb.WRITE_INT32 #i0
       BREAK 1
       ENDSWITCH
   ENDIF
   IF SEX >= #i2
       SWITCH HairColor
       CASE #i1
           my_bb.WRITE_INT32 #i0
       BREAK 1
       CASE #i2
           my_bb.WRITE_INT32 #i1
       BREAK 1
       CASE #i3
           my_bb.WRITE_INT32 #i2
       BREAK 1
       DEFAULT
           my_bb.WRITE_INT32 #i0
       BREAK 1
       ENDSWITCH
   ENDIF
RETURNSUB
ENDIF

SWITCH HairColor
PRINT_TEXT "6"
CASE #i1
   my_bb.WRITE_INT32 #i0
BREAK 1
CASE #i2
   my_bb.WRITE_INT32 #i1
BREAK 1
CASE #i3
   my_bb.WRITE_INT32 #i2
BREAK 1
CASE #i4
   my_bb.WRITE_INT32 #i3
BREAK 1
DEFAULT
   my_bb.WRITE_INT32 #i0
BREAK 1
ENDSWITCH
RETURNSUB


PRINT_TEXT "Shouldn't get to this point."
SUB FACE
PRINT_TEXT "7"
SWITCH FACE
CASE #i1
   my_bb.WRITE_INT32 #i0
BREAK 1
CASE #i2
   my_bb.WRITE_INT32 #i1
BREAK 1
CASE #i3
   my_bb.WRITE_INT32 #i2
BREAK 1
ENDSWITCH
RETURNSUB

Posted

Haha, thanks mpj123. I didn't even know that you can't have a bad name as nick in L2. ^^ Maybe because I didn't create any bad, huh. Another good share from L2.Net, really gonna try L2.Net now ^^.

 

Thanks.

Posted

haha funny, but maybe a little bit dangerous, maybe if someone rats you out, or a GM sees you, he will probably know you did something "wrong" to get that name.

 

buttt nice for a while :)

Posted

LOOOL , why would you want to use bad names :P ?

 

Dont thinks its awesome if someones names is called ; nazi or something

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

    • You might also take https://github.com/vercel-labs/agent-skills into consideration
    • Hay Algun datapack de L1 OFF ? 
    • pone los link para descargarlos por fa   
    • Greetings, everyone. I am sharing a configuration designed for any code editor/console with AI agents. This setup allows for expanded context and highly specific skills depending on your project requirements. It also comes with reusable skills ready for immediate use. Current configuration covers: WEB, L2j server datapacks, and L2j dev (including skills for handling decompiled Java datapacks, etc.). I have left a LINK to the original video on which this specific configuration is based. It also contains brief guides on how to implement new skills. You can simply ask your AI agent to review the guide to get started.   https://github.com/zambo420/Supercharge-your-AI-assistant-for-WEB-and-L2-DATAPACKS-dev.-.git   # 🤖 AI Skills Starter Kit - Forum Quick Start > **Supercharge your AI assistant (Claude, Gemini, Copilot)** ## ⚡ Installation in 2 Minutes   ### 1. Download and copy Copy the `Supercharge-your-AI-assistant-for-WEB-and-L2-DATAPACKS-dev.-/` folder to your project root.   ### 2. Rename and structure ``` your-project/ ├── skills/                      # Rename skills_reutilizables → skills │   ├── skill-creator/ │   ├── react-19/               # Copy the ones you need │   ├── typescript/ │   └── setup.ps1               # Copy from templates/ ├── AGENTS.md                    # Copy from templates/AGENTS.md.template └── src/                         # Your code ```   ### 3. Edit AGENTS.md Customize with your skills:   ```markdown   ## Available Skills | Skill | Description | File | |-------|-------------|------| | `react-19` | React 19 patterns | [SKILL.md](skills/react-19/SKILL.md) |   ## Auto-invoke Skills | Action | Skill | |--------|-------| | Working with React components | `react-19` | ```   ### 4. Sync ```powershell .\skills\setup.ps1 ```   ### 5. Done! Restart your AI assistant and start working.   ---   ## 📦 Included Skills (56 Total) ### Frontend - `react-19` - React 19, hooks, RSC - `typescript` - TypeScript patterns - `tailwind-4` - TailwindCSS v4 - `vite` - Build configuration - `zustand-5` - State management - `nextjs-15` - Next.js 15 - `i18next` - Internationalization - `react-router` - React Router v7 ### Backend - `zod-4` - Validation schemas - `ioredis` - Redis caching - `jwt` - JWT authentication - `django-drf` - Django REST Framework ### Testing & AI - `playwright` - E2E testing - `pytest` - Python testing - `ai-sdk-5` - Vercel AI SDK ### Utilities - `skill-creator` - Create new skills - `java-ant-build` - Apache Ant build system - `jira-epic` - Create Jira epics - `jira-task` - Create Jira tasks ### L2J/Game Server (33 skills) - `gameserver-data` - XMLs, multisells, spawns, NPCs - `gameserver-config` - Server configuration files - `authserver-config` - Login server configuration - `client-files` - Client textures, L2Text, system - `lucera2-core` - L2J core patterns, base classes - `lucera2-handlers` - Admin/user commands, bypass - `lucera2-services` - Community Board, ACP, Buffer - `lucera2-scripts` - Quests, NPCs, bosses, events - `lucera2-network` - Network packets - `lucera2-geodata` - Pathfinding, line of sight - `lucera2-ai` - NPC AI, monster behavior - `lucera2-zones` - Zone scripts, restrictions - `lucera2-achievements` - Achievement system - `lucera2-phantoms` - Fake players (bots) - `lucera2-data` - XML/SQL parsers, holders - `lucera2-authserver` - Login server Java code - `lucera2-olympiad` - Olympiad, heroes, nobles - `lucera2-residences` - Castles, clan halls, siege - `lucera2-skills-effects` - Skill effects, conditions - `lucera2-telegram` - Telegram bot integration - `lucera2-events-pvp` - TvT, GvG, CTF events - `lucera2-seasonal-events` - Holiday events - `lucera2-npc-instances` - Custom NPC types - `lucera2-items-inventory` - Items, inventory - `lucera2-clans-alliances` - Clans, wars - `lucera2-voting-ranking` - Voting rewards - `lucera2-siege-duel` - Siege, duel mechanics - `lucera2-pets-summons` - Pets, servitors - `lucera2-promo-rewards` - Promo codes, daily rewards - `lucera2-item-handlers` - Item handlers - `lucera2-instances-dungeons` - Instance dungeons - `lucera2-minigames` - Lottery, Fishing - `lucera2-autofarm` - AutoFarm bot system - `lucera2-party-matching` - Party finder - `lucera2-cursed-weapons` - Zariche, Akamanah - `lucera2-vip-premium` - VIP/premium accounts - `lucera2-extjar-projects` - Creating .ext.jar projects ---   ## 🎯 The Magic Trick The **Auto-invoke** table is the key:   ```markdown ## Auto-invoke Skills   | Action | Skill | |--------|-------| | Creating React components | `react-19` | | Adding TypeScript types | `typescript` | | Writing E2E tests | `playwright` | ```   **Without this table, AI ignores skills.** With it, they load automatically.   ---   ## 📁 Important Files | File | Purpose | |------|---------| | `AGENTS.md` | Main agent configuration | | `skills/setup.ps1` | Syncs to .claude/.gemini/.github | | `skills/*/SKILL.md` | Each skill definition |   ---   ## 💡 Tips 1. **One place only**: Keep all skills in `skills/` 2. **Auto-invoke**: Without this table, it won't work 3. **setup.ps1**: Run after every change 4. **Restart**: AI needs restart to load changes   ---   ## 🔧 Create Your Own Skill   ```markdown --- name: my-skill description: My skill description ---   ## When to Use - When to use this skill   ## Key Patterns - Important patterns   ## Code Examples \`\`\`typescript // Code example \`\`\` ```   Add to AGENTS.md and run `.\skills\setup.ps1`.   ---   ## 🤝 Compatibility - ✅ Claude Code (Antigravity) - ✅ Gemini CLI - ✅ GitHub Copilot - ✅ Cursor - ✅ Any AI that supports AGENTS.md   ---   ## 📚 More Info See `README.md` on github for complete guide and detailed documentation.    
  • 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..

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