Jump to content

Recommended Posts

Posted

Rule 1: Always save as Unicode

When saving the file, use notepad and select Unicode for the encoding. Go to the tutorials section for more information.

Rule 2: Dont use Tabs

If you use tabs, your script will not function properly. Notice none of my scripts use tabs. This makes the script hard to read, but it has to be so.

Rule 3: Don't use spaces

Just like you can't use tabs, you can't use spaces, unless they are used to seperate words in comments, npc names, item names, or skill names. You may also use spaces in some of the control syntax, such as Call(), Jmp() or Label()

Rule 4: Conditions within conditions DON'T work

 

Something like this:

 

CharStatus(CHP,>=,1000)

{

Msg(Condition: Should Not Show 1)

CharStatus(CHP,>=,1000)

{

Msg(Condition: Should Not Show 2)

}

Msg(Condition: Should Not Show 3)

}

Will not work. The opening bracket { will seek the first closing bracket }. Code directly after the closing bracket will be executed. In this case, that would be the Msg(Condition: Should Not Show 3).

Note: Some of my older scripts (if not updated) use conditions within conditions. They should, however, work fine nevertheless. This is because the conditions are not necessary, but put in as a form of backup coding before I knew the information here. It is, in other words a backup feature that does not work :P

Control:

/

This is a comment. Its sole purpose is to mark sections code. Walker will ignore anything written after a comment, as long as it is on the same line. A comment could consist of a foreward slash /, several foreward slashes //////, or foreward slashes and any text beyond it ////[ East Guard ]////

 

Here are a few more examples:

Code

////[ How to use a comment 101 ]////

/This is a comment you can write anything here even this:

/Exit()

/the Exit() function above will do nothing at all.

/This is because there is a comment placed in front of it.

 

/This however will make your script exit:

Exit()/

/This is because the comment is placed after the code.

 

//////////You may use any number of foreward slashes

Delay()/<----[You may also use comments like this]

/if you do so, the the code before the comment will still work.

Call(Text)

Call() goes to a Label(), then upon the command Return() it returns back to where the Call() was placed. Take a look at this code for example:

CODE

Call(Test1)

Delay(1000)//1

Call(Test1)

Delay(1000)//2

Call(Test1)

Delay(1000)//3

Call(Test1)

Delay(1000)//4

 

EXIT()

 

Label(Test1)

Delay(2000)//Call1

Return()

 

The first Call(Test1) will jump to the Label(Test1), carry out the codes following it then return back to the first Call(Test1) once it hits Return().

 

It will then perform the Delay(1000)//1 function and continue to the second Call(Test1).

 

The second Call(Test1) will also jump to the Label(Test1) and perform the functions following but this time, upon the Return() code it will not return to the first Call(Test1) but to the second Call(Test1) and then perform the Delay(1000)//2 function.

 

This will continue to happen for each Call(Test1) and will return to that specific Call(Test1) upon the command Return()

 

If i had used Jmp() instead of Call(), the return would be ineffective, and the code would not return back to the Jmp() upon the Return() code. It would, rather, continue on with the scrip. In the case of the above script, it would end after the Delay(2000)//Call1 as there are no more effective codes following it.

 

I hope this explains it.

 

Try this script to see what i mean...then try replacing all the Call() code with Jmp() code and see what happens.

 

Delay(Milliseconds)

This will stop the script for the defined ammount of time. For example, Delay(2000) will stop the script for 2 seconds. 1000 milliseconds is 1 second.

Exit(Text)

This will terminate the script

 

GoHome(Text)

This function goes to town if you are dead. Does nothing if you are alive

 

Jmp(Text)

Refer to the Call() function found above

 

Label(Text)

Refer to the Call() function found above

 

Pause(Text)

This will pause the script indefinately. Press Continue on the script panel to continue to the script

 

Return()

Refer to the Call() function found above. The misconception about Return() is that it is used to restart the script, which it does not.

 

Say(Message)

This will display the message inside the brackets to the L2walker chat area. Other players CAN see the output of this script. If you were to write say(I am a bot!), you would be saying to other players "I am a bot!"

NPC Interaction:

Here is an example of NPC Commands:

CODE

LABEL(Wirphy)

NPCSEL(Wirphy)

DELAY(1000)

NPCDLG(Wirphy)

DELAY(1000)

DLGSEL(Quest)

DELAY(1000)

StrInDlg(Say you will help)

{

DLGSEL(Say you will help)

JMP(Wirphy)

}

StrNotInDlg(Say you will help)

{

DELAY(1000)

NPCDLG(Wirphy)

DELAY(1000)

DLGSEL(Go to another village)

DLGSEL(Go to another village)

DLGSEL(The Northeast Coast - 700 ??)

DELAY (30000)

}

 

 

DlgSel(Diologue)

Selects the defined dilogue in a diologue window

 

NPCDlg(NPCNAME[iD=#])

Enables diologue with the defined NPC

 

NPCSel(NPCNAME[iD=#])

Selects an NPC

 

StrInDlg(Diologue)

Looks for a certain string in the dilogue and if it exists performs functions withiin a mathematica brace { }. The brace MUST follow this statement for it to function correctly

 

StrNotInDlg(Diologue)

Looks for a certain strin in the dilogue and if it does not exists, the script will performs functions in a mathematica brace { }. a mathematica brace { } must follow the script.

BuyItem(ITEMNAME[iD=#],#;)

Buys Item. Must have the buy window open with the desired npc

 

BuySeed(SEEDNAME[iD=#],#;)

Buys seed. Must have the buy seed window open with the desired npc

 

LoadItem(ITEMNAME[iD=#],#;)

takes out the desired item from the warehouse. Withdraw window must be opened. Use semicolon ; to add other items. Here is an example:

CODE

LoadItem(Stem[iD=1864],50;Varnish[iD=1865],50)

This code will remove 50 stems and 50 varnish from the warehouse

 

SaveItem(ITEMNAME[iD=#],#;)

similar to the above, except that it will put items into the warehouse instead of take them out. Here is an example:

CODE

LABEL(Itemdeposit)

NPCSEL(Airy[iD=7522])

DELAY(1000)

NPCDLG(Airy[iD=7522])

DELAY(1000)

DLGSEL(Deposit Item (Private Warehouse))

DELAY(1000)

ITEMCOUNT(Stem[iD=1864],>,0)

{

SaveItem(Stem[iD=1864],9999)

CALL(Itemdeposit)

Delay(2000)

}

The first part of this script is not necessary. It selects the desired npc (in this case, Airy), and opens the "Deposit Item" window (see NPCs section below for more information). Similar to the above load item syntax, which removes 50 stems and 50 varnish, it will place 9999 stems (or all, if you don't have that many) into the warehouse.

SellItem(ITEMNAME[iD=#],#;)

Similar to the BuyItem(ITEMNAME [iD=#],#;) function. The buy window must be open with an NPC. This code will buy the desired items, provided that the NPC carries them and you have the required adena.

 

SellSeed(SEEDNAME[iD=#],#;)

Similar to the BuySeed() function, but it sells seeds instead

 

Character

I am not entirely familiar with the UseSkill syntax. When it comes to this section, I advise you use common sense.

UseSkill(NAME[iD=#],NPC,TARGETNAME)

This syntax is used to make your character cast a spell on an NPC target. The target name has to be specified.

UseSkill(NAME[iD=#],Party,TARGETNAME)

I am unfamiliar with the use of this syntax. If anyone knows, please email me.

UseSkill(NAME[iD=#],Pet,TARGETNAME)

UseSkill(NAME[iD=#],Player,TARGETNAME)

UseSkill(NAME[iD=#],Self,TARGETNAME)

ChangeWaitType(0|1)

Sets the character to either sit or stand. 0 = sit, 1 = stand.

 

UseItem(ITEMNAME [iD=#];)

Uses a desired item or items

Settings:

Set(DefPath,Add,x,y,z,radii)

This syntax adds a Path point to the Define PathPoint section (found on the Pathing tab) of l2walker.

Set(DefPath,Clear)

This syntax clears all path points

Set(DefRange,Add,x,y,z)

This syntax adds a point to the Define Range section of the Pathing tab in L2-Walker options.

Set(DefRange,CLEAR)

This syntax clears all Define Range positions

Set(FIGHTSTART)

This syntax enables fighting mode.

Set(FIGHTSTOP)

This syntax disables fighting mode

Set(Item,NoPick,NAME[iD=#])

This syntax sets a

Set(Item,Pick,NAME[iD=#])

Set(Item,Save,NAME[iD=#])

Set(L2Walker,Disable)

This syntax disables L2-Walker. Scripts still function when L2-Walker is disabled

Set(L2Walker,Enable)

This syntax enables L2-Walker. Scripts still function when L2-Walker is disabled

Set(Mon,Attack,NAME [iD=#])

This syntax sets the settings of a perticular monster (as defined by Name[iD=#]) to Attack. In other words, Walker will attack that perticular monster.

Set(Mon,AttackOne,NAME [iD=#])

This syntax sets the settings of a perticular monster (as defined by Name[iD=#]) to Attack alone. In other words, Walker will attack that perticular monster, but only if that monster is found to be by itself.

Set(Mon,NoAttack,NAME [iD=#])

This syntax sets the settings of a perticular monster (as defined by Name[iD=#]) to Not Attack. In other words, Walker will not attack that perticular monster, unless that monster initiates combat.

Set(RangeType,Defpath)

This syntax sets the perimiters of fighting to the Define Path Point mode.

Set(RangeType,DefPos,x,y,z,radii)

This syntax sets the perimiters of fighting to the Center of an x, y and z Point, with a radius as defined by the radii.

Set(RangeType,DefRange)

This syntax sets the perimiters of fighting to the Define Range mode.

Set(RangeType,RAnd)

This syntax sets the perimiters of fighting to the RAnd mode (what ever that does).

Set(RangeType,StartPos,radii)

This syntax sets the perimiters of fighting to the "Combat Begin Point is Center Point" mode with a radius as defined by radii.

Conditions:

CharStatus(CHP,>=|>|==|!=|<|<=,#)

{

//code to be executed goes here

}

Must be followed by a mathematical brace { }. This script is to be followed by a mathematical brace { }. This code will calculate the character's current HP value, and if the conditons >=|> |==|!=|<|<= satisfy the number to the right #, the script within the a mathematical brace { } will be executed .

CharStatus(CMP,>=|>|==|!=|<|<=,#)

{

//code to be executed goes here

}

Similar to the first of the conditions series, but it calculates the MP value. If it satisfies the conditions it will perform the script within the a mathematical brace { }.

CharStatus(HP,>=|>|==|!=|<|<=,#)

{

//code to be executed goes here

}

Similar to the first of the conditions series, but it calculates the HP percenage. If it satisfies the conditions it will perform the script within the brackets { }.

CharStatus(LV,>=|>|==|!=|<|<=,#)

{

//code to be executed goes here

}

Similar to the first of the conditions series, but it calculates the HP percenage. If it satisfies the conditions it will perform the script within the a mathematical brace { }.

CharStatus(MP,>=|>|==|!=|<|<=,#)

{

//code to be executed goes here

}

Similar to the first of the conditions series, but it calculates the MP percenage. If it satisfies the conditions it will perform the script within the a mathematical brace { }.

CharStatus(RACE,>=|>|==|!=|<|<=,#)

{

//code to be executed goes here

}

Similar to the first of the conditions series, but it checks the character's race (by this, I assume they mean Class). If it satisfies the conditions it will perform the script within the a mathematical brace { }.

CharStatus(SP,>=|>|==|!=|<|<=,#)

{

//code to be executed goes here

}

Similar to the first code of the CharStatus() seires, but it calculates the SP value. If it satisfies the conditions it will perform the script within the a mathematical brace { }.

CharStatus(STAND,>=|>|==|!=|<|<=,0|1)

{

//code to be executed goes here

}

Similar to the first code of the CharStatus() sequence, but it checks wether or not the character is standing. 0 = sit, 1 = stand. If it satisfies the conditions it will perform the script within the a mathematical brace { }.

CharStatus(WEIGHT,>=|>|==|!=|<|<=,#)

{

//code to be executed goes here

}

Similar to the first code of the CharStatus() sequence, but it calculates the weight value of the character's inventory. If it satisfies the conditions it will perform the script within the a mathematical brace { }.

PosInRange(x,y,z,radii)

{

//code to be executed goes here

}

Must be followed by a mathematical brace { }. Checks wether or not the character is within the specified area (detirmened by the x, y and z axis as the epicenter of the location and the radius as the possible distance away from that location). If the character is found within this area, the code within the a mathematical brace { } is executed.

PosOutRange(x,y,z,radii)

{

//code to be executed goes here

}

Must be followed by a mathematical brace { }. Checks wether or not the character is within the specified area (detirmened by the x, y and z axis as the epicenter of the location and the radius as the possible distance away from that location). If the character is NOT found within this area, the code within the a mathematical brace { } is executed.

ItemCount(ITEMNAME[iD=#],>=|>|==|!=|<|<=,1)

{

//code to be executed goes here

}

This code is to be followedby a mathematical brace { }. Make sure both the open and close bracket is on a seperate line. This code Checks wether or not you have a certain ammount of items in your inventory (including what your character is equiped with) and if it satisfies the conditions it will perform the script within the a mathematical brace { }. Here is an example:

CODE

ITEMCOUNT(Wooden Arrow[iD=17],<=,20)

{

DELAY(1000)

Call(ToTown)

}

Operators:

{

//code to be executed goes here

}

Mathematical Brace . These are preceeded by a conditonal statement, such as a CharStatus() code. if the condition is satisfied, the code in the a mathematical brace will be executed. otherwise, it will be skipped. This is not to be used alone as a means of defining an object or a section of code. The opening and closing braces are to be each ALONE on a seperate line with no other characters or spaces preceeding and/or following it on that same line.

==

Equal to. Used in conditional statements

>

Greater Than. Used in conditional statements

>=

Greater Than or Equal To. Used in conditional statements

<

Less Than. Used in conditional statements

<=

Less Than, or Equal to. Used in conditional statements

!=

Not Equal to. Used in conditional statements

;

A semicolon seperates item names in many of the codes under the "Items" section. This lets you define more than one type of item to be stored, sold, bought, withdrawn in a single code. The example under the LoadItems() script, found above, shows how the semicolon would be used.

 

 

I hope i helped you guys...guide is mine and i spent over 1,5 hour to create it....so i hope that i helped you

 

  • 4 weeks later...
  • 3 weeks later...
  • 3 months later...
Posted

Hello, I'm creating a script to join the tvt in l2walker

but I need a little help

 

Why only read the first POSINRANGE?

 

and label (join tvt) call (join tvt) not working anymore

 

please help

 

 

Thnx

 

 

LABEL(join tvt)

NPCSEL(Parina)

NPCDLG(Parina)

DLGSEL(PARTICIPATECLOSE)

POSINRANGE(175394,20269,-3245,2000)

{

Call(TOTOWN)

}

DELAY(100)

POSINRANGE(9837,15620,-4569,400)

{

Call(rpscroll)

}

DELAY(100)

POSINRANGE(12970,16482,-4580,400)

{

Call(respawn die)

}

CALL(join tvt)

 

/////////////////Scroll in c1

LABEL(TOTOWN)

USEITEM(Scroll of Escape to Dark Elf Village[iD=7119])

 

////////////////after scroll

LABEL(rpscroll)

POSINRANGE(9837,15620,-4569,400)

{

MOVETO(10253,16967,-4569)

MOVETO(11132,16940,-4569)

MOVETO(12228,16596,-4584)

MOVETO(14734,16062,-4469)

}

POSINRANGE(14734,16062,-4469,200)

{

Call(join tvt)

}

////////////////die in c1 (respwn after tvt)

LABEL(respawn die)

delay(100)

POSINRANGE(12413,16610,-4580,400)

{

MOVETO(14734,16062,-4469)

}

POSINRANGE(14734,16062,-4469,400)

{

Call(join tvt)

}

call(join tvt)

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

    • Seems @SkyLord was right after all, a moderator can pm me to show proofs of that argentinian mental bitch that i trusted... dont wanna name him publicly just want him punished! That argentinian bitch is out to scam again! 
    • TILL OPENING LEFT - 6 DAYS !
    • Vibe-sms.net – Rental of real (non-VoIP) numbers and one-time SMS. Available in over 50 countries (UK, USA, Kazakhstan, Ukraine, Russia, China, and more). Many countries offer cheap registrations for certain services (e.g., Telegram) – Vietnam, Colombia, etc. A LARGE NUMBER OF REVIEWS ON ANOTHER PLATFORM! Flexible rental periods: From 5 minutes to 3 months, with the option to extend. API: We have an API system that allows easy integration with various services and automation of processes. Partnership & bulk orders: We offer special terms for bulk clients and are always open to cooperation. Terms are flexible -we’re ready to discuss proposals. For inquiries, message us on Telegram: https://t.me/vibe_sms_admin Refund policy: Funds are charged only upon receiving an SMS to the number. If a number doesn’t work, you can replace it. In exceptional cases, a refund is possible. We are not responsible for the success of your registrations!!! USA Prices: Service One-Time Code 3-Day Rental 30-Day Rental Telegram $0.54 $1.74 $8.28 Instagram $0.21 $1.14 $5.30 Google $0.48 $1.74 $8.28 Facebook $0.42 $1.74 $8.28 Amazon $0.34 $1.74 $8.28 Telegram channel: https://t.me/vibe_sms Website: Vibe-sms.net Telegram: @vibe_sms_admin
    • SOCNET STORE — a store for digital accounts and gift cards (subscriptions) for all services: TikTok, Instagram, Reddit, Twitter, Telegram, Facebook, LinkedIn, WhatsApp, Snapchat, YouTube, Google accounts, Discord, email (Outlook, Hotmail, Gmail, Rambler, Firstmail, and others), ChatGPT, and gift cards (premium subscriptions) for many services at affordable prices for everyone! Available payment methods: via PayPal, any cryptocurrency (+Binance Pay), Telegram Stars, Cash App, or any bank card. ⭐ Online store ⭐ socnet.store ⭐ SMM-Panel for social media promotion ⭐ SOCNET.PRO ⭐ Telegram store ⭐ socnet.shop ⭐ News: ⭐ ➡ Telegram channel: https://t.me/socnet_news ⭐ Contacts and support: ⭐ ➡ Telegram support: https://t.me/socnet_support ➡ Discord support: socnet_support ➡ Discord server: https://discord.gg/y9AStFFsrh ➡ WhatsApp support: 79051904467 ➡ WhatsApp channel: https://whatsapp.com/channel/0029Vau0CMX002TGkD4uHa2n ➡ Email support: solomonbog@socnet.store     ⭐ TELEGRAM ⭐ ㅤ ㅤ GROUPS/STARS/CHANNELS Telegram Stars on Posts | 1 star from $0.016 | Discounts for bulk orders | Delivery within 1 hour of purchase | Possible writing variations Telegram Stars | 1 star from $0.0149 | Discounts for bulk orders | Delivery within 1 hour of purchase Groups IMPORT and REAL | From 2014 to 2024 available! | For safe invitations | Low price and high quality! | Price from $4 Real old Telegram Channels (2022–2023: choose the year) | Real channels | Ownership transfer to your account | Price from $2.5 OLD ACCOUNTS Telegram USA/CANADA +1 | Auto-reg | Age 180+ days | TDATA+SESSION+JSON+2FA | +2FA enabled | Price from $2.5 Telegram Indonesia +62 | Auto-reg | Age 180+ days | TDATA+SESSION+JSON+2FA | +2FA enabled | Price from $2.5 Telegram South Africa +27 | Auto-reg | Age 180+ days | TDATA+SESSION+JSON+2FA | +2FA enabled | Price from $1.8 Telegram Philippines +63 | Auto-reg | Age 180+ days | TDATA+SESSION+JSON+2FA | +2FA enabled | Price from $2 Telegram Israel +972 | Auto-reg | Age 180+ days | TDATA+SESSION+JSON+2FA | +2FA enabled | Price from $2.5 NEW ACCOUNTS USA (+1) | Auto-reg | TDATA SESSION JSON 2FA | 2FA enabled | Price from $0.5 Canada (+1) | Auto-reg | TDATA SESSION JSON 2FA | 2FA enabled | Price from $0.5 Russia (+7) | Auto-reg | TDATA | No spam block | 2FA enabled (if enabled!) | Price from: $2 Brazil (+55) | Auto-reg | TDATA SESSION JSON 2FA | 2FA enabled | Price from: $2.5 United Kingdom (+44) | Auto-reg | Age from 3 days | TDATA SESSION JSON 2FA | 2FA enabled | Price from: $1.3 Germany (+49) | Auto-reg | Age from 3 days | TDATA SESSION JSON 2FA | 2FA enabled | Price from: $4 Myanmar (+95) | Auto-reg | TDATA SESSION JSON 2FA | 2FA enabled | Price from: $0.38 Bangladesh (+880) | Auto-reg | TDATA SESSION+JSON 2FA | 2FA enabled | Price from: $0.4 Indonesia (+62) | Auto-reg | Age from 3 days | TDATA SESSION+JSON 2FA | 2FA enabled | Price from: $0.5 Chile (+56) | Auto-reg | TDATA SESSION JSON 2FA | 2FA enabled | Price from: $0.8 Philippines (+63) | Auto-reg | TDATA SESSION JSON 2FA | 2FA enabled | Price from: $0.64   ⭐ FACEBOOK ⭐   Verified Facebook account with old Meta version and active blue checkmark | Subscription paid 1 month in advance + account verified with documents | Price from: $69 Facebook accounts | GEO: USA/Europe (Germany, France, UK, Italy, Spain, etc.) | Registered on a real Android device with a real phone number | SMS, cookies, photos, posts | Price from: $0.49 Facebook accounts | GEO: Europe (UK, Italy, France, Germany, Ukraine, etc.) | Age: from 6 months to 1 year | Registered on a real Android device with a real phone number | Format: login + password + UserAgent + cookies | Price from: $1 Facebook KING USA/Canada/Europe with 1-2 BM + Marketplace + Fan Page | Verified phone and email (included) | Manually farmed with ACTIVATED BUSINESS MANAGER | Filled-out profile, FUN PAGE + FARMed for 7+ days | Two-factor authentication enabled | Price from: $4.5 Facebook KING USA/Canada/Europe with 1-2 BM | Verified phone and email (included) | Manually farmed with ACTIVATED BUSINESS MANAGER | Filled-out profile, FUN PAGE + FARMed for 7+ days | Two-factor authentication enabled | Price from: $3 Facebook KING+FP 2022 | GEO: Europe (Ukraine, UK, France, Italy, Germany) | Friends: 30–100+ | Verified by phone and email (included) | Filled-out FunPage + FARMed for 7+ days | Two-factor authentication enabled | Price from: $8 Facebook Business Manager (BM) | Linked to an account with connected Business Manager | $50 limit (first day) + $250 (following days) + email confirmation | Ads Manager created | Price from: $40 OLD Facebook account (2010–2020) | Year of your choice | Filled-out profile and added friends | Email included (may not work) | Real accounts | Price from: $6 OLD Facebook account (2010–2022) with friends (50–500+) and activity | GEO: Europe and USA | Year of your choice | Filled-out profile and added friends | Email included (may not work) | Real accounts | Price from: $3 BM Facebook account with unlocked ad account limit $250, YEAR 2025 (NO RESTRICTIONS) | Facebook | 4 ACCOUNTS | EACH WITH $250 FROM START | NO DROPS IN LIMIT | Price from: $60 BM Facebook account with unlocked ad cabinet | GEO: Europe (Poland, Ukraine) | Facebook | FARMED: 7+ DAYS | 1–3 photos + email access + cookies + ad ban passed | 1–2 Business Managers | Documents included | Price from: $4.5 Old Facebook account (2008–2023) with linked ad account and $250 limit | Price from: $65 Verified Facebook Business Manager 250$ with $50 limit | GEO: USA | Verified by company | Price from: $29 OLD Facebook FanPage (2010–2023), converted to new type. Creation year: 2010–2023 | With real followers from 20 to 1000 (choose the number) | MORE TRUST THAN AD BAN | Price from: $10.5 Old Facebook FanPages (created in 2017–2022) — name can be changed | Price from: $7 Old Facebook accounts | GEO: Asia (India, Philippines, Vietnam, Indonesia, Malaysia) — choose your country | Age: 2010–2020 | Friends: from 20+ | Registered on real Android device with real number | Username | Password | 2FA Key | Email access | Backup Hotmail | DOB | Price from $8 Verified Facebook Business Manager (BM) account with open WhatsApp Account Manager and ability to link up to 2 WhatsApp numbers to your profile | Price from $89 Facebook account with ad ban. Age: 2022–2023. Country: USA/Europe (UK, France, Poland) — your choice. Ad account closed. Marketplace available (optional). Includes Mail + Ava + EAAB token + Cookies + UserAgent + 2FA (optional) | Price from $1   ⭐ TWITTER ⭐   Twitter Premium X/Premium+ subscription on your Twitter account for 1 month/1 year (your choice). Authorization in your Twitter account is required. Price from: $13 per month Twitter Premium Plus subscription with GROK AI assistant on your Twitter account for 1 year. Authorization in your Twitter account is required. Price from: $55 Twitter | New and clean accounts | AUTHORIZATION TOKEN | Email + 2FA TOKEN | Price from: $0.2 Twitter accounts filled with NFT and crypto content | IP EUROPE/ASIA | 1–5 follows | 1–5 followers | avatar + banner + geo + bio + authorization token | suitable for following, liking, reposting – everything | Price from: $0.5 Super promoted Twitter accounts with 100–10,000+ real followers | Full access (via email, login, and token) | Complete profile (avatar set, possibly cover and posts in account, regular username) | Refill: 30 days | Price from: $1 Twitter | Aged clean accounts (6+ months) | Login, password, email, and token included | Price from: $0.5 Old Twitter accounts 2009–2023 (YEAR OF YOUR CHOICE) | Verified by phone number and email | Access via login, email, and token | Price from: $1.2 Old Twitter accounts 2010–2020 with real followers from 1,000 to 20,000+ (followers of your choice) | Access via email, password, and token | Price from: $10 Old Twitter accounts 2010–2023 with BLUE Regular Tick for Tier 1/2/3 countries | Full access with login, password, and token included! | Price from: $16 Old Twitter accounts 2010–2023 with BLUE Regular Tick and real followers: 100–20,000 (your choice) Tier 1/2/3 countries | Full access with login, password, and token included | Refill: from 30 days | Price from: $17 Old Twitter NFT accounts 2010–2023 with BLUE Regular Tick Tier 1/2/3 countries | Full access with login, password, and token included! | Price from: $17 Old Twitter NFT accounts 2010–2023 with BLUE Regular Tick and high-quality real followers: 100–20,000 (your choice) Tier 1/2/3 countries | Full access with login, password, and token included | Refill: from 30 days | Price from: $18   ⭐ GOOGLE/YOUTUBE ⭐   Gmail.com | Registered from MIX IP address | Clean and without messages | Valid for 2–3 days | Invalid accounts are replaced | Format: email:password:submail | SMS verification not required | IMAP ON | Submail included | Price from: $0.15 Old Gmail.com | Age: from 2005 to 2023 (real accounts) – YEAR OF YOUR CHOICE | Accounts may contain messages | Registered from MIX IP | Invalid accounts are replaced | Format: email:password:submail | SMS verification not required | IMAP ON | Submail included | Price from: $0.85 Old Gmail.com | Registered from US IP address | Age: from 2010 to 2023 – YEAR OF YOUR CHOICE | Accounts can send messages | Format: email:password:submail | SMS verification not required | IMAP ON | Submail included | Price from: $1.89 Google Voice Accounts (GMAIL US NEW) | Age/Year: Random 2024 | Phone Verified: Yes | Price from: $15 GOOGLE ADS ACCOUNT USA/EUROPE (UK, Germany, France, etc.) | Manually farmed 7+ days | Google Ads account created | Includes two-factor authentication (2FA), backup codes, backup email with access, UserAgent and cookies | Price from: $13 GOOGLE ADS ACCOUNT USA/EUROPE (UK, Germany, France, etc.) | VERIFICATION COMPLETED — €10 BALANCE | Manually farmed 7+ days | Ads created | Includes two-factor authentication (2FA), backup email with access, UserAgent and cookies | Price from: $55 Google Ads Account Europe/USA with ad campaigns and spend of $100/$500/$1000 | Advertiser verification not completed | Full access and account setup | Price from: $200 Google Ads Account Europe/USA with ad campaigns and spend of $100/$500/$1000 | Advertiser verification completed | Full access and account setup | Price from: $400   ⭐ YOUTUBE CHANNELS ⭐   YouTube channel accounts | Age: 2006–2020 (year of your choice) | With or without videos (your choice) | Price from: $1 YouTube channel accounts | Age: 2006–2020 (year of your choice) | With videos and views (views of your choice) | Price from: $23 Organic YouTube channels with real subscribers (year of your choice) – and organic views (10K–1M) – both customizable | Price from: $24   ⭐ DISCORD ⭐   Discord – email:password:token with attached working email | Activated via SMS | 1 order = 3 accounts | Price from: $0.44 DISCORD Real Android Devices | Verified on RAMBLER.RU or FIRSTMAIL, working email, phone SMS verified | Age 3+ months | Suitable for all purposes | Accounts without restrictions and SMS | Price from: $0.5 DISCORD Account | 1 order = 3 accounts, only verified email (@rambler.ru/@firstmail (working) included), Gender MIX | Price from: $0.5 DISCORD Account | Real Android device | 1 order = 3 accounts | Verified via RAMBLER.RU or FIRSTMAIL | Working email included | Phone verified | Age from 1 month | Suitable for all purposes | Accounts without restrictions and SMS | Price from: $0.75 DISCORD Account | Real Android devices | Verified on RAMBLER.RU or FIRSTMAIL | Email included (may not work) | Phone verified | Age from 1 year | Suitable for all purposes | Accounts without restrictions and SMS | Price from: $0.8 DISCORD NITRO   Discord Nitro Classic (Basic) GIFT | 1/12 MONTHS | NO ACCOUNT LOGIN REQUIRED | Full duration guarantee | Price from: $3.15 Discord Nitro FULL | 1/12 MONTHS | NO ACCOUNT LOGIN REQUIRED | Full duration guarantee | Price from: $6.8   ⭐ REDDIT ⭐   Reddit Karma Brute Account | 1 KARMA | Access via cookies only (password may not work) | Cheapest account | Price from: $1 Reddit Karma Brute Account | KARMA from 20–100 POSTS & COMMENTS | Registered via MIX IP | FORMAT: USERNAME: PASSWORD:EMAIL:MAILPASS | Price from: $5 Reddit Karma Brute Account | KARMA from 500/1000/2000/5000/10000/20000 POSTS & COMMENTS (YOUR CHOICE) | Registered via MIX IP | FORMAT: USERNAME: PASSWORD:EMAIL:MAILPASS | Price from: $9+   ⭐ INSTAGRAM ⭐   Old verified Instagram Meta account with active blue checkmark | Subscription already paid for 1 month ahead + account verified by documents | Price from: $69 OLD Instagram accounts (2011–2020) | Clean and quality account | Country: MIX | Email included! | Price from: $1.1 New Instagram accounts | PREMIUM Auto-reg quality (API FRESH) | Registered via SMS | Completely new | Up to 24 hours | Format: login | password | cookies (for InstAccountsManager) | Price from: $0.05 OLD Instagram accounts (2011–2020) | NO FLAG | Suitable for follower boosting | Country: MIX | Email included | Price from: $1.15 OLD Instagram accounts (2011–2015) | Clean and quality account | Country: MIX | Email included! | Price from: $1.3 OLD Instagram accounts (2011–2020) with followers | 100/500/1000/5000/10000+ followers (YOUR CHOICE) | Country: MIX | Email included! | Price from: $1.35 OLD Instagram accounts (2011–2015) with followers | 100 followers | Country: MIX | Email included! | Price from: $1.45 OLD Instagram accounts (2011–2020) | Clean and quality account | Country: Europe and USA | Email included! | Price from: $2 OLD Instagram accounts (2011–2020) | Clean and quality account | Country: USA | Email included! | Price from: $2.5 OLD Instagram accounts (2011–2020) with followers | 100/500/1000/5000/10000+ followers (YOUR CHOICE) | Country: Europe and USA | Email included! | Price from: $3 OLD Instagram accounts (2011–2020) with followers | 100/500/1000/5000/10000+ followers (YOUR CHOICE) | Country: USA | Email included! | Price from: $2.75 OLD Instagram accounts (2010–2020) | Account ready for purchase | META VERIFIED | The account has posts | Price from: $4.99 OLD Instagram META account (2010–2020) with 100/500/1000/5000/10000 followers (YOUR CHOICE) | Account ready for purchase | META VERIFIED | Account has posts | Price from: $5.99   ⭐ PROXIES / VPN / VIRTUAL SERVERS ⭐   IPv6 PROXIES | Individual IPv6 proxy protocol | Format: HTTP/SOCKS5 | Any country | 30 days | Unlimited traffic | Price from: $0.35 IPv4 DATACENTER PROXIES | Individual IPv4 protocol | Format: HTTP/SOCKS5 | Any country | 30 days | Unlimited traffic | Price from: $1 DYNAMIC IPv4 PROXIES (with time-based rotation) | Any country | Format: HTTP/SOCKS5 | 30 days | Price per 1GB traffic | Price from: $3 RESIDENTIAL IPv4 PROXIES | Any country | Format: HTTP/SOCKS5 | 30 days | UNLIMITED TRAFFIC | HIGH SPEED UP TO 1 GB/s | Price from: $2.5 Private mobile proxies | Unlimited traffic | Any GEO (your choice) | Duration: 1/30/365 days (your choice) | Speed up to 30 MB/s | Price from: $10 OutLine VPN | Any country of your choice | Works on all devices and in any country (including Russia!) | Duration: 30 days | Price from: $2.5 WireGuard VPN | Any country of your choice | Works on all devices and in any country (including Russia!) | Duration: 30 days | Price from: $2.5 VDS (1–12 months) | GEO: USA, UK, Canada, Germany, India, France, Australia | RAM: 2–16 GB | Disk space (SSD): 60 GB – 8 TB | Custom configuration! | Lowest price! | Price from: $3 ⭐ TIKTOK ⭐ TIKTOK – Clean (wiped) auto-reg accounts II VERIFIED @RAMBLER.RU/@FIRSTMAIL II EMAIL INCLUDED, registered with RU IP | Price from: $0.1 TikTok auto-reg account II Verified via rambler.ru email, email included II Gender: MIX II Latin name II Empty profile II Registered with MIX IP | Price from: $0.1 TikTok auto-reg account II 100/1000/5000/10000+ followers (your choice) II Email verified @hotmail/@outlook/@firstmail/@rambler, email included (working) II Gender: MIX II Latin name II Registered with MIX IP | Price from: $1 ㅤ ㅤ ADVERTISING ACCOUNTS TIKTOK AD ACCOUNTS | GEO: USA/EUROPE | PREPAID | Manual registration | Email access + Cookies + VAT info | Price from: $1 TIKTOK AD ACCOUNTS | GEO: USA/EUROPE | Business verified + POSTPAY | Manual registration | Email access + Cookies + VAT info | Price from: $3.5 TIKTOK AD ACCOUNTS | GEO: USA/EUROPE | POSTPAY + BUSINESS CENTER | 3 ad accounts for running ads + 1 personal | Possible ad coupons from $20 to $100 | Manual registration | Email access + Cookies + VAT info | Price from: $8 ⭐ LINKEDIN & SNAPCHAT ⭐ Linkedin.com accounts | Email included: @outlook/@hotmail/@firstmail | Male or Female | Partially filled profiles | Registered from US/Europe/MIX IP | Price from: $2.5 LinkedIn Old Brute account with real connections (0 connections) | Mixed GEO | Filled profile | Registered on real device | Price from: $10 LinkedIn Premium Brute account (Premium) with active Premium subscription for 1 month | GEO: MIX | Registered on real device | Full access to account | Price from: $20 LinkedIn Old Brute account with real connections (50/100/500/1000+ connections) – YOUR CHOICE | Mixed GEO | Filled profile | Registered on real device | Price from: $20 Verified LinkedIn Brute account with confirmed documents | GEO: MIX | Registered on real device | Full access to account | Price from: $89 Snapchat Brute Old Account with real activity and score (from 0/10k/20k/50k/100k+ points) | GEO: USA, UK, Saudi Arabia, Dubai, India | Real accounts with real posts and followers (random amount) | Price from: $15 ⭐ WHATSAPP ⭐ WhatsApp real accounts | USA (+1 code) | High-quality accounts | QR-code or code from phone: from $3 ⭐ EMAIL ACCOUNTS ⭐ Outlook.com auto-reg account | Age: from 6 months | Registered on random IPs, IMAP and POP3 enabled | Valid for a long time and suitable for any purpose | Price from: $0.1 Firstmail.ltd auto-reg account | 1 order = 10 inboxes | IMAP enabled | High quality and functionality on all sites | Domains: maillerbox.com, fmailler.com, fmailnex.com, fmailler.net and others | Price from: $0.04 Rambler.ru auto-reg account | NEVER USED BEFORE | High quality and functionality on all sites | Price from: $0.02 Onet.pl auto-reg account | Email format: @ONET | Gender: mixed | SMTP, POP3, IMAP enabled | Price from: $0.1 Gazeta.pl auto-reg account | Email format: email@gazeta.pl | Gender: mixed | SMTP, POP3, IMAP enabled | Price from: $0.1 GMX.net / GMX.com auto-reg account | Email format: email@gmx.com/.at/.ch/.de/.net | Gender: mixed | SMS verification (+49) | SMTP, POP3, IMAP enabled | Price from: $0.05 GMX OLD account 2020–2023 | Email format: email@gmx.com/.at/.ch/.de/.net | Gender: mixed | Verified via SMS (+49) | SMTP, POP3, IMAP enabled | Price from: $0.3 Yahoo.com auto-reg account | IP and gender: MIX | Verified via SMS | IMAP, POP3, SMTP enabled | Phone and IMAP password included | Price from: $0.15 Auto-registered accounts Protonmail.com / Proton.me auto-reg account | Age: from 10 days | English first and last names | MIX IPs | Price from: $0.15 Web.de OLD account 2020–2023 | Email format: @web.de | Gender: MIX | Verified via SMS (+49) | SMTP, POP3, IMAP enabled | Price from: $0.4 ⭐ OTHER SERVICES & PREMIUM SUBSCRIPTIONS ⭐ ㅤ ㅤ DISCORD NITRO Discord Nitro Classic (Basic) GIFT | 1/12 MONTHS | NO LOGIN OR PASSWORD NEEDED | Full subscription guarantee | Price from: $3.15 Discord Nitro FULL | 1/12 MONTHS | NO LOGIN OR PASSWORD NEEDED | Full subscription guarantee | Price from: $6.8 SPOTIFY PREMIUM Individual Spotify Premium plan for 1 month ON YOUR ACCOUNT | Available worldwide | Price from: $2.49 Family Spotify Premium plan for 1 month ON YOUR ACCOUNT | Works in any country | Price from: $3.75 Personal YouTube Premium Music on your account | 1 month | Ad-free YouTube | Price from: $3.75 Family YouTube Premium Music on your account | 1 month | Ad-free YouTube | Price from: $4.35 TELEGRAM PREMIUM Telegram Premium subscription for 1 month on your account | Authorization required (via TDATA or phone number) | Price from: $6 Telegram Premium subscription for 3 months on your account | No account authorization required | Guaranteed for full period | Price from: $17 Telegram Premium subscription for 6 months on your account | No account authorization required | Guaranteed for full period | Price from: $22 Telegram Premium subscription for 12 months on your account | No account authorization required | Guaranteed for full period | Price from: $37 GOOGLE VOICE Google Voice Accounts (GMAIL US NEW) | Age/Year: Random 2024 | Phone Verified: Yes | Price from: $13 TWITTER(X) PREMIUM Twitter Premium X subscription on your Twitter account for 1 month/1 year (your choice). Authorization in your Twitter account is required. Price from: $13 per month Twitter X Premium Plus subscription with GROK AI on your Twitter account for 1 month/1 year (your choice). Authorization in your Twitter account is required. Price from: $55 NETFLIX PREMIUM Netflix Premium subscription for 1 month on your personal account for any country, renewable after expiration | Price from: $10 CANVA PRO CANVA PRO subscription for 1 month via invitation to your email | Price from: $1 CHATGPT Shared ChatGPT 4 Plus account FOR 2/5 USERS | Price from: $5 / $10 Group ChatGPT Plus subscription on your own email address for 1 month | Price from: $5 Personal ChatGPT 4o1 account FOR 1 USER or CHAT GPT PLUS subscription on your own account | Price from: $18 ChatGPT PRO account with UNLIMITED REQUESTS | Dedicated personal account FOR 1 USER ONLY or ON YOUR ACCOUNT | Works in any country or region | Price from: $220   Available payment methods: via PayPal, any cryptocurrency (+Binance Pay), Telegram Stars, Cash App, or any bank card. ⭐ Online store ⭐ socnet.store ⭐ SMM-Panel for social media promotion ⭐ SOCNET.PRO ⭐ Telegram store ⭐ socnet.shop   ⭐ News: ⭐ ➡ Telegram channel: https://t.me/socnet_news ⭐ Contacts and support: ⭐ ➡ Telegram support: https://t.me/socnet_support ➡ Discord support: socnet_support ➡ Discord server: https://discord.gg/y9AStFFsrh ➡ WhatsApp support: 79051904467 ➡ WhatsApp channel: https://whatsapp.com/channel/0029Vau0CMX002TGkD4uHa2n ➡ Email support: solomonbog@socnet.store ⭐ 10% – 20% Discount or $1 BONUS for your registration ⭐ If you’d like to receive a $1 BONUS for your registration OR a DISCOUNT of 10% – 20% on your first purchase, simply leave a comment: "SEND ME MY BONUS, MY USERNAME IS..." You can also use the ready promo code across all our stores: "SOCNET" (15% discount!) ⭐ We invite you to COOPERATE and EARN with us ⭐ Want to sell your product or service in our stores and earn money? Want to become our partner or propose a mutually beneficial collaboration? You can contact us through the CONTACTS listed in this thread.    
  • 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