Jump to content

[SHARE] Create characters with "BAD" names!


mpj123

Recommended Posts

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

Link to comment
Share on other sites

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.

Link to comment
Share on other sites

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 :)

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

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

    • WTB 414 interface source (4game), compiler, xdat editor.  
    • Edit ItemsAutoDestroy#addItem method, simply enforce whatever timer you want. L2J already handles your case, eg. herbs naturally dissapear after a while.
    • https://www.youtube.com/watch?v=VjJ2uLlRGOc LF something similar to this. ability to do transactions/verify/withdraw/add and history. Do NOT need new window, can be done in html as long as the function works   Serious people only, paying well
    • Hello, I'm having a problem with my drop rates, due to the high amount of loot that Champions give I made it so that non-stackable items drop on the ground (since going over 500 items in the inventory disables a character), the problem is that in the long run sometimes Champions dropped hundreds or thousands of non-stackable items on the ground, causing massive lag, lowering the drop rate/chance isn't a possibility since that would mean massively decreasing the chance of item to be dropped from a regular mob, to solve this I just set the MultipleItemDrop config to False, with that only 1 item is created if the item is non-stackable   HOWEVER the problem is that now whenever I'm doing a quest and the NPC gives 2 or more items of the same ID (like the Spirit of Mirrors quest in the Human Village) I get only 1 instead, making the quest impossible to complete, I went into the core and noticed 2 variables affected by the MultipleItemDrop config: dropItem and addItem, I thought that maybe creating a new config and separating both would solve the problem, and it did, but after that if someone logged out while having equipped any item other than NG then the character would be unable to enter again, and a massive error appears on the console when someone tries to login said character, the error was basically StackOverflowError which with my really lacking knowledge of java it means that something is on an infinite loop   With that situation happening I think that now my safest option is to just limit the amount of items dropped on the ground, how can I do this? here's the code for the item drop:   public L2ItemInstance dropItem(L2PcInstance player, int itemId, long itemCount) { L2ItemInstance item = null; for (int i = 0; i < itemCount; i++) { // Randomize drop position. final int newX = (getX() + Rnd.get((RANDOM_ITEM_DROP_LIMIT * 2) + 1)) - RANDOM_ITEM_DROP_LIMIT; final int newY = (getY() + Rnd.get((RANDOM_ITEM_DROP_LIMIT * 2) + 1)) - RANDOM_ITEM_DROP_LIMIT; final int newZ = getZ() + 20; if (ItemTable.getInstance().getTemplate(itemId) == null) { LOG.error("Item doesn't exist so cannot be dropped. Item ID: {} Quest: {}", itemId, getName()); return null; } item = ItemTable.getInstance().createItem("Loot", itemId, itemCount, player, this); if (item == null) { return null; } if (player != null) { item.getDropProtection().protect(player); } item.dropMe(this, newX, newY, newZ); // Add drop to auto destroy item task. if (!Config.LIST_PROTECTED_ITEMS.contains(itemId)) { if (((Config.AUTODESTROY_ITEM_AFTER > 0) && !item.getItem().hasExImmediateEffect()) || ((Config.HERB_AUTO_DESTROY_TIME > 0) && item.getItem().hasExImmediateEffect())) { ItemsAutoDestroy.getInstance().addItem(item); } } item.setProtected(false); // If stackable, end loop as entire count is included in 1 instance of item. if (item.isStackable() || !Config.MULTIPLE_ITEM_DROP) { break; } } return item; } And the code for the itemdrop on L2Attackable.java:   public void doItemDrop(L2NpcTemplate npcTemplate, L2Character mainDamageDealer) { if (mainDamageDealer == null) { return; } L2PcInstance player = mainDamageDealer.getActingPlayer(); // Don't drop anything if the last attacker or owner isn't L2PcInstance if (player == null) { return; } CursedWeaponsManager.getInstance().checkDrop(this, player); if (isSpoiled()) { _sweepItems.set(npcTemplate.calculateDrops(DropListScope.CORPSE, this, player)); } Collection<ItemHolder> deathItems = npcTemplate.calculateDrops(DropListScope.DEATH, this, player); if (deathItems != null) { for (ItemHolder drop : deathItems) { L2Item item = ItemTable.getInstance().getTemplate(drop.getId()); // Check if the autoLoot mode is active if (isFlying() || ((!item.hasExImmediateEffect() && ((!isRaid() && Config.AUTO_LOOT) && (item.isStackable() || (isRaid() && Config.AUTO_LOOT_RAIDS)))) || (item.hasExImmediateEffect() && Config.AUTO_LOOT_HERBS))) { player.doAutoLoot(this, drop); // Give the item(s) to the L2PcInstance that has killed the L2Attackable } else { dropItem(player, drop); // drop the item on the ground } // Broadcast message if RaidBoss was defeated if (isRaid() && !isRaidMinion() && (drop.getCount() > 0)) { final SystemMessage sm = SystemMessage.getSystemMessage(SystemMessageId.C1_DIED_DROPPED_S3_S2); sm.addCharName(this); sm.addItemName(item); sm.addLong(drop.getCount()); broadcastPacket(sm); } } } }   Thanks in advance
    • Open your ide, search for the file name of that xml that you have opened. There should be a class that parses these data in some entities. Those entities should hold information about the rate, if not then try to find usages of those entities and check where this rate is being calculated.
  • 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