Jump to content

Recommended Posts

Posted

Well this is a PJ that sells its buff - and adapted it for Freya l2jserver

 

#########################################

######### Algunas Cosillas Mejoradas #########

#########################################

1ª | Command Buff to Sell .SellBuffs

2ª | New Command to Rise .CancelSellBuffs

3ª | You can change the title from l2jmods.properties

4ª | When you see Buff and no need to remove the Target and give again and give him only with k leaves you to buff new tab.

5ª | Fixed error Adena

 

http://img22.imageshack.us/img22/9148/shot00007lj.jpg

http://img4.imageshack.us/img4/7599/shot00008os.jpg

 

Esto va en Eclipse

 

===================================================================
--- head-src/com/l2jserver/Config.java 
+++ head-src/com/l2jserver/Config.java 

  public static boolean L2JMOD_ENABLE_WAREHOUSESORTING_PRIVATE;
+  public static String ADD_TITULO_PJ_SELLBUFS;

===================================================================

       L2JMOD_ENABLE_WAREHOUSESORTING_PRIVATE = Boolean.valueOf(L2JModSettings.getProperty("EnableWarehouseSortingPrivate", "False"));
+      ADD_TITULO_PJ_SELLBUFS = L2JModSettings.getProperty("TituloPjSellBuffs", "BUFF");


===================================================================
--- head-src/com/l2jserver/gameserver/model/actor/instance/L2PcInstance.java 
+++ head-src/com/l2jserver/gameserver/model/actor/instance/L2PcInstance.java 
@@ -31,6 +31,7 @@
import java.util.concurrent.locks.ReentrantLock;
import java.util.logging.Level;

+import javolution.text.TextBuilder;
import javolution.util.FastList;
import javolution.util.FastMap;
import com.l2jserver.Config;
@@ -451,6 +452,8 @@

    private boolean _noble = false;
    private boolean _hero = false;
+  private boolean _sellbuff = false;
+  private int _buffprize = 0;
+ private String _oldtitle = "";
+ private int _oldnamecolor = 0;
+   


    /** The L2FolkInstance corresponding to the last Folk wich one the player talked. */
    private L2FolkInstance _lastFolkNpc = null;
@@ -2375,6 +2378,9 @@
    */
    public void standUp()
    {
+      if(isSellBuff())
+        return;
+     
      if (L2Event.active && eventSitForced)
      {
          sendMessage("A dark force beyond your mortal understanding makes your knees to shake when you try to stand up ...");
@@ -3945,6 +3951,42 @@

      // Target the new L2Object (add the target to the L2PcInstance _target, _knownObject and L2PcInstance to _KnownObject of the L2Object)
      super.setTarget(newTarget);
+
+      L2PcInstance t = null;
+      if(newTarget instanceof L2PcInstance)
+        t = (L2PcInstance) newTarget;
+     
+      if(t != null){
+        if(t.isSellBuff() && t != this){
+            TextBuilder tb = new TextBuilder();
+            NpcHtmlMessage n = new NpcHtmlMessage(0);
+           
+            tb.append("<html><body>");
+            tb.append("<br><br>");
+            tb.append("<center>Hola <font color=LEVEL>Campesin@</font> Quieres Buff!</center>");
+            tb.append("<br><center>Mis Buff Cuestan: <font color=LEVEL>"+t.getBuffPrize()+"</font> Adenas cada uno!</center><br><center><table><tr>");
+           
+            L2Skill[] skills = t.getAllSkills();
+            FastList<L2Skill> ba = new FastList<L2Skill>();
+           
+            for(L2Skill s : skills){
+              if(s == null)
+                  continue;
+             
+             
+              if(s.getSkillType() == L2SkillType.BUFF && s.isActive() && s.getId() != 970 && s.getId() != 357 && s.getId() != 1323 && s.getId() != 327 && s.getId() != 1325 && s.getId() != 1326 && s.getId() != 1327)
+                  ba.add(s);
+            }
+           
+            for(L2Skill p : ba){
+                tb.append("<td><button action=\"bypass -h buff "+p.getId()+"\" width=32 height=32 back=\"Icon.skill"+p.getId()+"\" fore=\"Icon.skill"+p.getId()+"\"></td>");
+                tb.append("<td><button value=\""+p.getName()+"\" action=\"bypass -h buff "+p.getId()+"\" width=200 height=32 back=\"L2UI_CT1.Windows_DF_Drawer_Bg_Darker\" fore=\"L2UI_CT1.Windows_DF_Drawer_Bg_Darker\"></td>");
+                tb.append("<td><button action=\"bypass -h buff "+p.getId()+"\" width=32 height=32 back=\"Icon.skill"+p.getId()+"\" fore=\"Icon.skill"+p.getId()+"\"></td></tr><tr>");
+            }
+           
+            tb.append("</tr></table></center></body></html>");
+           
+            n.setHtml(tb.toString());
+            sendPacket(n);
+        }
+      }
    }

    /**
@@ -8214,7 +8256,23 @@
      }
      return true;
    }
+  public boolean isSellBuff(){
+      return _sellbuff;
+  }
+ 
+    public void setSellBuff(boolean j){
+      _sellbuff = j;
+    }
+
+    public int getBuffPrize(){
+      return _buffprize;
+    }
+   
+    public void setBuffPrize(int x){
+      _buffprize = x;
+    }
+   
+    public String getOldTitle()
+    {
+       return _oldtitle;
+    }
+   
+    public int getOldNameColor()
+    {
+       return _oldnamecolor;
+    }
+   
+    public void setOldTitle(String title)
+    {
+       _oldtitle = title;
+    }
+   
+    public void setOldNameColor(int color)
+    {
+       _oldnamecolor = color;
+    }
+   
    public boolean isNoble()
    {
      return _noble;





===================================================================
--- head-src/com/l2jserver/gameserver/clientpackets/RequestBypassToServer.java
+++ head-src/com/l2jserver/gameserver/clientpackets/RequestBypassToServer.java
@@ -18,16 +18,20 @@
  */
package com.l2jserver.gameserver.network.clientpackets;

import java.util.StringTokenizer;
import java.util.logging.Level;
import java.util.logging.Logger;

import com.l2jserver.Config;
import com.l2jserver.gameserver.ai.CtrlIntention;
import com.l2jserver.gameserver.communitybbs.CommunityBoard;
import com.l2jserver.gameserver.datatables.AdminCommandAccessRights;
+import com.l2jserver.gameserver.datatables.SkillTable;
import com.l2jserver.gameserver.handler.AdminCommandHandler;
import com.l2jserver.gameserver.handler.BypassHandler;
import com.l2jserver.gameserver.handler.IAdminCommandHandler;
import com.l2jserver.gameserver.handler.IBypassHandler;
import com.l2jserver.gameserver.model.L2CharPosition;
import com.l2jserver.gameserver.model.L2Object;
+import com.l2jserver.gameserver.model.L2Skill;
import com.l2jserver.gameserver.model.L2World;
import com.l2jserver.gameserver.model.actor.L2Npc;
import com.l2jserver.gameserver.model.actor.instance.L2MerchantSummonInstance;
@@ -85,6 +89,57 @@
          {
            comeHere(activeChar);
          }
+        else if(_command.startsWith("buff")){
+           String[] val = _command.split(" ");
+            String x = val[1];
+            int id = Integer.parseInt(x);
+            L2PcInstance target = null;
+           
+            if(activeChar.getTarget() instanceof L2PcInstance)
+            target = (L2PcInstance) activeChar.getTarget();
+           
+            if(target == null)
+              return;
+           
+            if(activeChar.getInventory().getItemByItemId(57) == null || activeChar.getInventory().getItemByItemId(57).getCount() < ((L2PcInstance) activeChar.getTarget()).getBuffPrize()){
+              activeChar.sendMessage("* No tienes adena!");
+              return;
+            }
+           
+       
+            try{
+            L2Skill s = SkillTable.getInstance().getInfo(id, 3);
+            s.getEffects(activeChar, activeChar);
+            activeChar.sendMessage("* Has Comprado: "+s.getName());
+            activeChar.getInventory().destroyItemByItemId("", 57, target.getBuffPrize(), activeChar, null);
+            target.getInventory().addItem("", 57, target.getBuffPrize(), target, null);
+            TextBuilder tb = new TextBuilder();
+            NpcHtmlMessage n = new NpcHtmlMessage(0);
+           
+            tb.append("<html><body>");
+            tb.append("<br><br>");
+            tb.append("<center>Hola <font color=LEVEL>Campesin@</font> Quieres Buff!</center>");
+            tb.append("<br><center>Mis Buff Cuestan: <font color=LEVEL>"+target.getBuffPrize()+"</font> Adenas cada uno!</center><br><center><table><tr>");
+           
+           
+            L2Skill[] skills = target.getAllSkills();
+            FastList<L2Skill> ba = new FastList<L2Skill>();
+           
+            for(L2Skill skill : skills){
+              if(skill == null)
+                  continue;
+             
+             
+              if(skill.getSkillType() == L2SkillType.BUFF && skill.isActive() && skill.getId() != 970 && skill.getId() != 357 && skill.getId() != 1323 && skill.getId() != 327 && skill.getId() != 1325 && skill.getId() != 1326 && skill.getId() != 1327)
+                  ba.add(skill);
+            }
+           
+            for(L2Skill p : ba){
+                tb.append("<td><button action=\"bypass -h buff "+p.getId()+"\" width=32 height=32 back=\"Icon.skill"+p.getId()+"\" fore=\"Icon.skill"+p.getId()+"\"></td>");
+                tb.append("<td><button value=\""+p.getName()+"\" action=\"bypass -h buff "+p.getId()+"\" width=200 height=32 back=\"L2UI_CT1.Windows_DF_Drawer_Bg_Darker\" fore=\"L2UI_CT1.Windows_DF_Drawer_Bg_Darker\"></td>");
+                tb.append("<td><button action=\"bypass -h buff "+p.getId()+"\" width=32 height=32 back=\"Icon.skill"+p.getId()+"\" fore=\"Icon.skill"+p.getId()+"\"></td></tr><tr>");
+            }
+           
+            tb.append("</tr></table></center></body></html>");
+           
+            n.setHtml(tb.toString());
+            activeChar.sendPacket(n);
+            }
+            catch(Exception e){
+              e.printStackTrace();
+            }
+        }
+        else if(_command.startsWith("actr")){
+            String l = _command.substring(5);
+           
+            int p = 0;
+
+            p = Integer.parseInt(l);
+           
+           
+            if(p == 0)
+              return;
+           
+            if(p > 2000000000){
+              activeChar.sendMessage("* Te has colado el limite de Adena!");
+              return;
+            }
+           
+              activeChar.setBuffPrize(p);
+              activeChar.sitDown();
+              activeChar.setTeam(1);
+              activeChar.setSellBuff(true);
+              activeChar.setOldTitle(activeChar.getTitle());
+              activeChar.setOldNameColor(activeChar.getAppearance().getNameColor());
+              /*activeChar.getAppearance().setNameColor(0x55155);*/
+              activeChar.getAppearance().setNameColor(99, 22, 11);
+              activeChar.setTitle(Config.ADD_TITULO_PJ_SELLBUFS);
+              activeChar.broadcastUserInfo();
+              activeChar.broadcastTitleInfo();
+        }
          else if (_command.startsWith("player_help "))
          {
            playerHelp(activeChar, _command.substring(12));

 

Cuando pongamos este codigo guardams y copilamos.

 

Luego bamos a Ruta --> game\data\scripts\handlers

 

y abrimos el MasterHandler y añadimos

 

import handlers.voicedcommandhandlers.stats;

  import handlers.voicedcommandhandlers.VisualArmor;

+import handlers.voicedcommandhandlers.sellbuff;

 

  import java.util.logging.Logger;

 

  import com.l2jserver.Config;

 

##############################

 

 

      VoicedCommandHandler.getInstance().registerVoicedCommandHandler(new stats());

+      VoicedCommandHandler.getInstance().registerVoicedCommandHandler(new sellbuff());

      if (Config.L2JMOD_ALLOW_WEDDING)

        VoicedCommandHandler.getInstance().registerVoicedCommandHandler(new Wedding());

      if (Config.BANKING_SYSTEM_ENABLED)

        VoicedCommandHandler.getInstance().registerVoicedCommandHandler(new Banking());

 

y guardamos y luego bamos a ruta --> game\data\scripts\handlers\voicedcommandhandlers

y creamos un archivo llamado --> sellbuff

 

y le añadimos el codigo

 

package handlers.voicedcommandhandlers;

 

import javolution.text.TextBuilder;

import com.l2jserver.gameserver.handler.IVoicedCommandHandler;

import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;

import com.l2jserver.gameserver.network.serverpackets.NpcHtmlMessage;

 

/**

*

* @author  Iratus

*/

public class sellbuff implements IVoicedCommandHandler

{

 

  private static final String[] VOICED_COMMANDS = {"sellbuffs","cancelsellbuffs"};

 

  public boolean useVoicedCommand(String command, L2PcInstance activeChar, String target)

  {

      if(activeChar == null)

        return false;

   

      if (command.equals(VOICED_COMMANDS[0]))

    {

        if(activeChar.isDead() || activeChar.isAlikeDead()){

          activeChar.sendMessage("You are dead , you can't sell at the moment");

          return false;

        }

        else if(!activeChar.isInsideZone(L2PcInstance.ZONE_PEACE)){

          activeChar.sendMessage("You are not in peacefull zone , you can sell only in peacefull zones");

          return false;

        }

        else if(activeChar.getPvpFlag() > 0 || activeChar.isInCombat() || activeChar.getKarma() > 0){

          activeChar.sendMessage("You are in combat mode , you can't sell at the moment");

          return false;

        }

        else if(activeChar.getClassId().getId() != 98){

          activeChar.sendMessage("You must be a buffer class to sell buffs");

          return false;

        }

     

        TextBuilder tb = new TextBuilder(0);

        tb.append("<html><body><center>");

        tb.append("<table><tr>");

        tb.append("<td><img src=\"icon.etc_alphabet_b_i00\" width=32 height=32 align=left></td><td><img src=\"icon.etc_alphabet_u_i00\" width=32 height=32 align=left></td>");

        tb.append("<td><img src=\"icon.etc_alphabet_f_i00\" width=32 height=32 align=left></td><td><img src=\"icon.etc_alphabet_f_i00\" width=32 height=32 align=left></td>");

        tb.append("</tr></table><br>");

        tb.append("<br><font color=LEVEL>Hola</font>, completando este formulario<br>");

        tb.append("<br>usted podra de <font color=LEVEL>vender</font> tus <font color=LEVEL>Buff</font>.<br>");

        tb.append("<br>Los <font color=LEVEL>Players</font> Podran Echarse tus <font color=LEVEL>Buff</font>.<br>");

        tb.append("<br><font color=LEVEL>Tu Pones la Cantidad</font><br>");

        tb.append("<br>de adena para echarse los Buff<br>");

        tb.append("<p><font color=LEVEL>Precio de Buff:</font></p>");

        tb.append("<p><edit var=\"pri\" width=120 height=15></p>");

        tb.append("<button value=\"Confirmar\" action=\"bypass -h actr $pri\" width=160 height=32 back=\"L2UI_CT1.Windows_DF_Drawer_Bg_Darker\" fore=\"L2UI_CT1.Windows_DF_Drawer_Bg_Darker\">");

        tb.append("</center><br>");

        tb.append("<center>.:<font color=LEVEL>Lineage II</font>:.</center>");

        tb.append("</body></html>");

        NpcHtmlMessage n = new NpcHtmlMessage(0);

        n.setHtml(tb.toString());

        activeChar.sendPacket(n);

    }

    else if (command.equals(VOICED_COMMANDS[1]))

    {

      if (activeChar.isSellBuff())

      {

        activeChar.setSellBuff(false);

        activeChar.standUp();

        activeChar.setTeam(0);

        activeChar.getAppearance().setNameColor(activeChar.getOldNameColor());

            activeChar.setTitle(activeChar.getOldTitle());

            activeChar.broadcastUserInfo();

            activeChar.broadcastTitleInfo();

      }

    }

   

    return true;

  }

 

 

  @Override

  public String[] getVoicedCommandList()

  {

      return VOICED_COMMANDS;

  }

 

}

 

Luego bamos a ruta -> game\config y abrimas el archivo l2jmods.properties y le agregamos

 

EnableWarehouseSortingPrivate = False
+
+###########################
+#### TITULO SELLBUFFS #####
+###########################
+# TITULO PARA VENDER BUFF
+TituloPjSellBuffs = * VENDO BUFF *

 

Creditos : Lobillo , LioNa

 

and Save and you're all set if it works do not forget to give the +

 

sorry with my English

Posted

next version:

 

Contains the window to sell items to sell buff.

Areglado error when you wake sete change the name and title color as you had before selling buff. etc

 

sorry for my English

  • 1 year later...
Posted

hi i put this in my server H5 l2jserver and:

when i buy some buffs and target mayself i see my buffs that i can buy ;p

html appear when i target buffseller from far far far away ;p

when i have enchanted buffs and want to sell buyer get not enchanted buffs

and some other bugs ;]

 

Sorry for my english, hope u understund me.

  • 5 weeks later...
Posted

Error in H5:

[18/10 17:45:16] Client: [Character: Ogmus[268483764] - Account: ogmus - IP: 77.241.112.63] - Failed writing: NpcHtmlMessage - L2J Server Version: 6663M - DP Revision: 10466M ; null
java.nio.BufferOverflowException
	at java.nio.Buffer.nextPutIndex(Buffer.java:527)
	at java.nio.HeapByteBuffer.putChar(HeapByteBuffer.java:270)
	at org.mmocore.network.SendablePacket.writeS(SendablePacket.java:113)
	at com.l2jserver.gameserver.network.serverpackets.NpcHtmlMessage.writeImpl(NpcHtmlMessage.java:84)
	at com.l2jserver.gameserver.network.serverpackets.L2GameServerPacket.write(L2GameServerPacket.java:109)
	at org.mmocore.network.SelectorThread.putPacketIntoWriteBuffer(SelectorThread.java:621)
	at org.mmocore.network.SelectorThread.prepareWriteBuffer(SelectorThread.java:589)
	at org.mmocore.network.SelectorThread.writePacket(SelectorThread.java:500)
	at org.mmocore.network.SelectorThread.run(SelectorThread.java:187)

Critical Client to target player sell buff.

  • 6 months later...
Posted

hello first thanks for this sellbuffer i added it right in my server and with somethings changed work fine, but i have a problem with the target.

 

1- if i target the buffer seller on the first clik the window to sell buffs appear ( even if you aren't near buffer).

2- if i close that window and try to reopen (with the buffer targeted) dont work and no errors ( seems only show htm in the first target click) if i leave target and target again work fine.

3- you are allowed to use buffs till your target dissappear from far far far.

 

someone know how to fix the issue with target to work normally as all npcs? i mean if you are inside radius it show htm i hope you understand me and sorry for my english not good, thanks in advance.

Posted (edited)

Put the TextBuilder which displays the sell window under new method, put some checks, if all fine -> show window.

Edited by SweeTs
Posted (edited)

Put the TextBuilder which displays the sell window under new method, put some checks, if all fine -> show window.

thanks sweets i will try now.

 

 

edit: well i try to add this change as you said, i added the "ifs" in the setTarget method as the script is example;

super.setTarget(newTarget); <-- this is the reference line.

L2PcInstance = null;

if(newtarget instanceof L2pcinstance)
{
t = (L2PcInstance) newTarget;
}

if(t != null)
{
if(t.issellBuff() && t != this)
{
showHtm()
}

---------------------------------

then the method showhtm():

textbuilder etc..


i added this but no work, if i target the buffer from far it show the html anyway, and if i add a restriction for if isinsideradius(target, l2npc.interact_distance true , false) --> return it works fine if i am far of buffer, but when i go near the buffer if i have it targeted it dont show the html ( because i have it targeted before enter in his radius LOL),i just want the html working the same as all npcs and texts, this problem are killing my life, thanks if someone can help me, greetings.

 

this is the final work using this base script:

 

sellbuffs.jpg

sellbuffs2.jpg

Edited by b0rto
Posted (edited)

anybody know how to fix that?. seriously i need this issue fixed because i am fighting 4 days with the same shit, if someone have knowledge to fix that i can pay 10€ through paypal to fix it because i very need this working fine, contact me in skype: b0rtzito thanks in advance.

 

P.D a person already helped me to solve this, the problem was in actionhandlers -> l2pcinstanceAction  , just add a check if isSellBuffs do the same action as private shops and it work as it should now :p.

Edited by b0rto
  • 4 weeks later...
  • 1 month later...

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

    • SOCNET STORE — is a unique place where you can find everything you need for your work on the Internet!   We offer the following range of products and services: Verified accounts with blue tick marks and confirmed documents in Instagram, Facebook, Twitter (X), LinkedIn; Gift cards and premium subscriptions for your services (Instagram Meta, Facebook Meta, Discord Nitro, Telegram Premium, YouTube Premium, Spotify Premium, ChatGPT, Netflix Premium, LinkedIn Premium, Twitter Premium, etc.); Telegram bot for purchasing Telegram Stars with a minimum markup with automatic delivery; Replenishment of your advertising accounts (in TikTok ADS, Facebook ADS, Google ADS, Bing ADS) + linking a bank card; Payment for any other service or subscription with a markup from 5 to 25% (depending on the cost of the subscription) Available payment methods: via PayPal, any cryptocurrency (+Binance Pay), Telegram Stars, Cash App, or any bank card.    Our online store  SOCNET.STORE  Our Telegram Stars Bot  SOCNET.CC  Our SMM-Panel for social media promotion  SOCNET.PRO  Telegram store  SOCNET.SHOP    News:  ➡ Telegram channel ➡ WhatsApp channel ➡ Discord server  Contacts and support:  ➡ Telegram support ➡ WhatsApp support ➡ Discord support: socnet_support ➡ Email support: solomonbog@socnet.store We have been operating for a long time and have gathered a huge list of reviews about our work! Our large list of positive and honest reviews is presented on our website!   VERIFIED ACCOUNTS    Verified old Instagram Meta account (2010-2020) with an active blue checkmark | Subscription has already been paid for 1 month in advance, account confirmed by documents: from $70 Verified old Facebook Meta account (2010-2023) with an active blue checkmark | Subscription has already been paid for 1 month in advance, account confirmed by documents: from $70 Verified Linkedin account (2010-2024) with an active checkmark and confirmed documents | Checkmark does not require renewal: from $80 Verified old Twitter (X) account (2010-2022) with an active blue checkmark | GEO: Tier 1-3 (your choice) | Subscription has already been paid for 1 month in advance: from $16    TELEGRAM STARS    Telegram Stars | 1 star from $0.0175 | Discounts for bulk orders | Delivery within 1-2 minutes automatically    GIFT 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 5 • Shared ChatGPT 5 Plus account FOR 2/5 USERS | Price from: $5 / $10 • Group ChatGPT 5 Plus subscription on your own email address for 1 month | Price from: $5 • Personal ChatGPT 5 Plus account FOR 1 USER or CHAT GPT PLUS subscription on your own account | Price from: $18 • ChatGPT 5 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 Payment for any other subscription and replenishment of advertising accounts: Additional 5–20% to the cost of the subscription on the site or to the replenishment amount depending on the total purchase amount.   Attention: This text block does not represent our full product range; for more details, please visit the relevant links below! If you have any questions, our support team is always ready to help!       Our online store  SOCNET.STORE  Our Telegram Stars Bot  SOCNET.CC  Our SMM-Panel for social media promotion  SOCNET.PRO  Telegram store  SOCNET.SHOP    News:  ➡ Telegram channel ➡ WhatsApp channel ➡ Discord server  Contacts and support:  ➡ Telegram support ➡ WhatsApp support ➡ Discord support: socnet_support ➡ Email support: solomonbog@socnet.store We have been operating for a long time and have gathered a huge list of reviews about our work! Our large list of positive and honest reviews is presented on our website!  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. Frequently Asked Questions and Refund Policy If you have any questions or issues, our fast customer support is always ready to respond to your requests! Refunds for services that do not fully meet the stated requirements or quality will only be issued if a guarantee and duration are explicitly mentioned in the product description. In all other cases, refunds will not be fully processed! By purchasing such services, you automatically agree to our refund policy for non-provided services. We currently accept CRYPTOMUS, Payeer, NotPayments, Perfect Money, Russian and Ukrainian bank cards, AliPay, BinancePay, CryptoBot, credit cards, and PayPal. The $1 registration bonus can only be used for purchases and only once after your first registration in any SOCNET project. We value every customer and provide replacements in case of invalid accounts through our contact methods! p.s.: Purchase bonuses can be used across any SOCNET projects: web store or Telegram bots.
    • SOCNET SMM - is a new solution among all existing SMM panels. Our panel offers more than 6100+ promotion services in social networks such as Instagram, TikTok, Telegram, VKontakte, Reddit, YouTube, Twitter (X.com), Snapchat, Spotify and many, many others services + increasing the traffic of your website in search results. Our service cooperates with high-quality and proven service providers for promoting your profiles, posts, videos, publications and others on various social networks and your website in the search engine, as well as an additional way to earn income from your referrals.   Available payment methods: via PayPal, any cryptocurrency (+Binance Pay), Telegram Stars, Cash App, or any bank card.   ⭐ Our SMM-Panel for social media promotion ⭐ SOCNET.PRO ⭐ Our online store⭐  SOCNET.STORE ⭐ Our Telegram Stars bot ⭐ SOCNET.CC ⭐ Telegram store ⭐ SOCNET.SHOP ⭐ News: ⭐ ➡ Telegram channel ➡ WhatsApp channel ➡ Discord server ⭐ Contacts and support: ⭐ ➡ Telegram support ➡ WhatsApp support ➡ Discord support: socnet_support ➡ Email support: solomonbog@socnet.store     We have been operating for a long time and have gathered a huge list of reviews about our work! Our large list of positive and honest reviews is presented on our website!   ㅤㅤINSTAGRAM SERVICES   Instagram - Followers ~ Real ~ Refill  30D ~ 20k-100k/days  | Start From $5.324 per 1000 Instagram - Likes ~ 300k ~ 100k/days ~ Asian/Russian  | Start from $0.051 per 1000 Instagram - Views ( All Videos ) ~ 500k-1M/days ~ Instant | Start From $0.003  per 1000 Instagram - Comment ~ Custom ~ 1M ~ Refill  30D ~ 1k/Days ~ Asian/Turkish | Start from $4.875 per 1000 Instagram - Instagram - Story Views ~ All Stories ~ 150k ~ Refill  30D ~ 5k/days | Start from $0.148  per 1000 Instagram - Mentions ~ Custom List ~ 100K/Days ~ 0-12hrs  | Start from $2.763 per 1000   ㅤㅤTELEGRAM SERVICES   Telegram - Members ~ Max 100k ~ 100-1k/days ~ 0-1hrs | Start from $0.604 per 1000 Telegram - Premium Members + Views: From search l 7 day Premium l 7 day No Drop | Start from $7.216  per 1000 Telegram Bot Start - Instant - Speed : 10K/D - NoRefill  | Start from $0.297 per 1000 Telegram - Channel/Group Members ~ USA~ Max 70k ~ Refill 10D ~ 5k/days ~ Instant | Start from $1.788 per 1000 Telegram - Views ~ 1 POST ~ Instant  | Start from $0.005 per 1000 Telegram - Reactions | Start from $1.306 per 1000   ㅤㅤTWITTER (x.com) SERVICES   Twitter (x.com) - Likes ~ 200k ~ 10k/days ~ Asian | Start from $1.187 per 1000 Twitter (x.com) - Retweets ~ 200k ~ 10k/days ~ Asian | Start from $0.894 per 1000 Twitter (x.com) - Followers | Non-Drop | 30 Days Refill | Auto Refill Every 1 Hours | Start from $19.50 per 1000 Twitter (x.com) - Likes ~ 350k ~ 2k-10k/days ~ Mixed ~ | Start from $1.727 per 1000 Twitter (x.com) - Tweet Views ~ Max 100M ~ Refill 30D ~ 10M/days ~ Instant | Start from $0.032 per 1000 Twitter (x.com) - Tweet Impression ~ Max 1M ~ 1M/days ~ Instant | Start from $0.114 per 1000   ㅤㅤTHREADS   Threads - Likes ~ No Refill ~ 1k-10k/days ~ 0-1hrs  | Start from $1.045 per 1000 Threads - Followers ~ 500-1k/days ~ No Refill ~ Instant | Start from $2.438 per 1000 Threads - Reshare ~ 1k-5k/days ~ Refill 30D ~ 0-2hrs  | Start from $8.125  per 1000   ㅤㅤLIKEE   Likee - Follower ~ Max 30k ~ Real ~ Instant | Start from $10.112 per 1000 Likee - Likes ~ Max 30k ~ Real ~ Instant | Start from $3.787 per 1000 Likee - Shares ~ Max 30k ~ Real ~ Instant | Start from $2.649 per 1000 Likee - Comments ~ Max 30k ~ Real ~ Instant | Start from $11.473 per 1000 Likee - Views ~ Max 1m ~ Real ~ Instant | Start from $3.787 per 1000   ㅤㅤTIKTOK SERVICES   TikTok - Views ~ 10k-100k/days | Start from $0.033 per 1000 TikTok - Likes + Views ~ 30D ~ 3k-5k/days | Start from $0.203 per 1000 TikTok - Followers ~ 30D ~ 5k/days | Start from $2.474 per 1000 TikTok - Shares ~ 30D ~ 1M/days | Start from $0.163 per 1000 TikTok - Save ~ 30D ~ 3k-5k/days | Start from $0.163  per 1000   ㅤㅤFACEBOOK SERVICES   Facebook - Video Views ~ 5k-100k/days | Start from $0.11 per 1000 Facebook - Post Likes ~ 5k/days | Start from $2.548 per 1000 Facebook - Page Likes + Followers ~ 1k-10k/days ~ Instant | Start from $0.85 per 1000 Facebook - Share ~ 30D ~ 1k-5k/days | Start from $1.451 per 1000 Facebook - Post/Photo likes ~ 20k ~ LifeTime ~ 1k-50k/days ~ Instant | Start from 0.66$ per 1000 Facebook - Emoticons Post Likes ~ 1k-5k/Days ~ INSTANT | Start from $0.943 per 1000 Facebook Live Stream [ Watch 15 Minute ] | Start from $1.338 per 1000 Facebook - Video/Reels Views ~ 3 Sec ~ 500k-1m/days | Start from $0.11 per 1000   ㅤㅤREDDIT SERVICES   Reddit Channel Subscribers [Refill 30 Days] [Max: 100M] [Start Time: 0 -1 Hour] [Speed: 5M/Day] | Start from $2.08 per 1000 Reddit Shares | 500M | Refill: Lifetime | ULTRAFAST | 0-10 Min | 100M/Day | Start from $0.371 per 1000 Reddit Views | 500M | Refill: Lifetime | ULTRAFAST | 0-10 Min | 100M/Day | Start from $0.371 per 1000 Reddit View + Shares | 500M | Refill: Lifetime | ULTRAFAST | 0-10 Min | 100M/Day | Start from $0.741 per 1000 Reddit Link Shares | 500M | Refill: Lifetime | ULTRAFAST | 0-10 Min | 100M/Day | Start from $0.371 per 1000   ㅤㅤDISCORD SERVICES   Discord Offline Members | READ THE DESCRIPTION | ADD BOT | HQ | MAX 5K | Start from $1.58 per 1000 Discord Global Online Server Members | +2 Month Online | Max 15K | Start from $108.986 per 1000 Discord Server Boosts | For 1/3/6/12 Months | 1x-14x boosts | Start from 2.23$ per 1 boost Discord | Only Reactions | UHQ | Instant Start | Start from $5.695 per 1000   ㅤㅤLINKEDIN SERVICES   LinkedIn - Profile Followers ~ Max 1k ~ Refill 30D ~ 500-1k/days ~ 0-1Hrs | Start from $21.97 per 1000 LinkedIn - Page Followers ~ Max 1k ~ Refill 30D ~ 500-1k/days ~ 0-1Hrs | Start from $21.97 per 1000 Linkedin - Post Likes [+ Impressions ] ~ Refill 30D ~ 500/days ~ Instant | Start from $16.90 per 1000 Linkedin - Comments [ Random ] ~ Max 1k ~ No Refill ~ 30-50/days ~ 1-6hrs | Start from $28.73 per 1000 LinkedIn - Connection ~ Refill 30D ~ 500/days ~ Instant | Start from $28.73  per 1000   ㅤㅤYOUTUBE SERVICES   YouTube - Views ~ LifeTime ~ 500k-1M/Days | Start from $1.488 per 1000 YouTube - Likes ~ No Refill ~ 1k-5k/days ~ Instant  | Start from $0.13 per 1000 Youtube - Subscribers | MQ 5K | 250-500 Per Day R30 | Start from $78.00 per 1000 YouTube - Comments ~ Random ~ 100k ~ No Refill ~ 1k-5k/days ~ 0-3Hrs | Start from $19.013 per 1000 YouTube - Shorts Likes ~ 50k-60k/days ~ Refill 30D - Instant | Start from $1.30 per 1000 YouTube - Live Stream Reaction ~ Help Small Boosting Live ~ Instant  | Start from $0.192 per 1000     ㅤㅤWHATSAPP SERVICES   WhatsApp Channel Members [ Global-Real ] [ Speed: 500/day ] [ Start: 0-1hrs ] | Start from $15.647 per 1000 WhatsApp Group Members [ Mix Country ] [ Real Quality ] | Start from $30.893 per 1000 WhatsApp Channel Members [ Mix Country ] [ Real Quality ] | Start from $28.179 per 1000 Whatsapp Channel Emoji Reactions | Start from $6.797 per 1000 Whatsapp Channel Post Emoji Reactions | Random Mix |  Start from $3.861 per 1000   ㅤㅤTWITCH/KICK/TROVO SERVICES   Twitch - Followers ~ Max 1k ~ 1k/Days ~ Instant | Start from $0.183 per 1000 Twitch - Video Views ~ Max 20k ~ No Refill ~ 5k/days ~ 0-1Hrs  | Start from $1.073 per 1000 Twitch - Clip Views ~ Max 20k ~ No Refill ~ 5k/days ~ 0-1Hrs | Start from $0.163 per 1000 Twitch Live Views | 10 Minutes | Start from $0.597 per 1000 Trovo Live Followers [Max: 5K] [Offers] [1-2/Hour] [30 Day Refill]  | Start from $18.688 per 1000 Kick - Followers ~ 1.2k ~ No Refill ~ 1k/Days ~ INSTANT | Start from $4.55 per 1000 Kick - Live Viewers - Stable viewers HQ ~ Duration: 60 min | Start from $40.30 per 1000   ㅤㅤSOUNDCLOUD SERVICES   Soundcloud - Followers ~ 2.5k ~ Refill 30D ~ 100-500/days ~ Instant | Start from $7.132 per 1000 Soundcloud - Likes ~ 2.5k ~ Refill 30D ~ 100-500/days ~ Instant | Start from $7.132 per 1000 Soundcloud - Reposts ~ 2.5k ~ Refill 30D ~ 100-500/days ~ Instant | Start from $7.132 per 1000   ㅤㅤSPOTIFY SERVICES   Spotify - Followers ~ 292k ~ 20k/days | Start from $4.225 per 1000 Spotify - Saves ~ 400k ~ 20k/days | Start from $0.488 per 1000 Spotify - Monthly Listeners ~ LifeTime ~ 5k-20k/days | Start from $1.788  per 1000   ㅤㅤQUORA SERVICES   Quora.com - Upvote ~ Max 10k ~ Refill 30D  | Start from $8.125 per 1000 Quora.com - Shares ~ Max 10k ~ Refill 30D  | Start from $8.125 per 1000 Quora.com - Followers ~ Max 10k ~ Refill 30D  | Start from $8.45 per 1000   ㅤㅤWEBSITE TRAFFIC Worldwide / GEO Target - Custom Referral Traffic | Start from $1.284 per 1000 visits WorldWide Traffic from Google.com [Organic] [Custom Keywords] | Start from $0.244 per 1000 visits WorldWide Traffic from Google.com | Start from $0.244 per 1000 visits WorldWide Traffic from Facebook  | Start from $0.244 per 1000 visits WorldWide Traffic from Instagram | Start from $0.244 per 1000 visits WorldWide Traffic from Quora | Start from $0.244 per 1000 visits WorldWide Traffic from Reddit | Start from $0.244 per 1000 visits WorldWide Traffic from YouTube | Start from $0.244 per 1000 visits WorldWide Traffic from Twitter | Start from $0.244 per 1000 visits Attention: this text block does not represent our full product range; for more details, please visit the relevant links below!   If you have any questions, our support team is always ready to help!   Available payment methods: via PayPal, any cryptocurrency (+Binance Pay), Telegram Stars, Cash App, or any bank card.   ⭐ Our SMM-Panel for social media promotion ⭐ SOCNET.PRO ⭐ Our online store⭐  SOCNET.STORE ⭐ Our Telegram Stars bot ⭐ SOCNET.CC ⭐ Telegram store ⭐ SOCNET.SHOP   ⭐ News: ⭐ ➡ Telegram channel ➡ WhatsApp channel ➡ Discord server ⭐ Contacts and support: ⭐ ➡ Telegram support ➡ WhatsApp support ➡ Discord support: socnet_support ➡ Email support: solomonbog@socnet.store We have been operating for a long time and have gathered a huge list of reviews about our work! Our large list of positive and honest reviews is presented on our website! ⭐ Get a $1 bonus for your first test run ⭐ Just submit a support ticket with the subject “Get Trial Bonus” on our website. Go to SMM Panel (clickable) or contact our bot support ⭐ We invite you to COOPERATE and EARN with us ⭐   Want to sell your product or service in our stores and earn money?   Become our partner or propose mutually beneficial cooperation?   You can contact us via the CONTACTS provided in this topic.   FAQ and Refund Policy If you have any questions or issues, our fast support service is ready to respond to your requests! A refund for a service that does not fully meet the requirements or fails to meet the stated quality will only be issued if the product description specified a warranty and the period of good faith warranty. In other cases, a refund for the service will not be fully processed and will not be issued! By purchasing such a service, you automatically agree to our refund rules for undelivered services! We currently accept CRYPTOMUS, Payeer, NotPayments, Perfect Money, Russian and Ukrainian bank cards, AliPay, BinancePay, CryptoBot, credit bank cards, and PayPal. The $1 registration bonus can only be used for purchases and only once after the user's first registration in any of the socnet projects. We value every customer and provide replacements for invalid accounts via our contacts! p.s: The purchase bonus can be used in any SOCNET projects: online store or Telegram bots.
    • SOCNET SMM - is a new solution among all existing SMM panels. Our panel offers more than 6100+ promotion services in social networks such as Instagram, TikTok, Telegram, VKontakte, Reddit, YouTube, Twitter (X.com), Snapchat, Spotify and many, many others services + increasing the traffic of your website in search results. Our service cooperates with high-quality and proven service providers for promoting your profiles, posts, videos, publications and others on various social networks and your website in the search engine, as well as an additional way to earn income from your referrals.   Available payment methods: via PayPal, any cryptocurrency (+Binance Pay), Telegram Stars, Cash App, or any bank card.   ⭐ Our SMM-Panel for social media promotion ⭐ SOCNET.PRO ⭐ Our online store⭐  SOCNET.STORE ⭐ Our Telegram Stars bot ⭐ SOCNET.CC ⭐ Telegram store ⭐ SOCNET.SHOP ⭐ News: ⭐ ➡ Telegram channel ➡ WhatsApp channel ➡ Discord server ⭐ Contacts and support: ⭐ ➡ Telegram support ➡ WhatsApp support ➡ Discord support: socnet_support ➡ Email support: solomonbog@socnet.store     We have been operating for a long time and have gathered a huge list of reviews about our work! Our large list of positive and honest reviews is presented on our website!   ㅤㅤINSTAGRAM SERVICES   Instagram - Followers ~ Real ~ Refill  30D ~ 20k-100k/days  | Start From $5.324 per 1000 Instagram - Likes ~ 300k ~ 100k/days ~ Asian/Russian  | Start from $0.051 per 1000 Instagram - Views ( All Videos ) ~ 500k-1M/days ~ Instant | Start From $0.003  per 1000 Instagram - Comment ~ Custom ~ 1M ~ Refill  30D ~ 1k/Days ~ Asian/Turkish | Start from $4.875 per 1000 Instagram - Instagram - Story Views ~ All Stories ~ 150k ~ Refill  30D ~ 5k/days | Start from $0.148  per 1000 Instagram - Mentions ~ Custom List ~ 100K/Days ~ 0-12hrs  | Start from $2.763 per 1000   ㅤㅤTELEGRAM SERVICES   Telegram - Members ~ Max 100k ~ 100-1k/days ~ 0-1hrs | Start from $0.604 per 1000 Telegram - Premium Members + Views: From search l 7 day Premium l 7 day No Drop | Start from $7.216  per 1000 Telegram Bot Start - Instant - Speed : 10K/D - NoRefill  | Start from $0.297 per 1000 Telegram - Channel/Group Members ~ USA~ Max 70k ~ Refill 10D ~ 5k/days ~ Instant | Start from $1.788 per 1000 Telegram - Views ~ 1 POST ~ Instant  | Start from $0.005 per 1000 Telegram - Reactions | Start from $1.306 per 1000   ㅤㅤTWITTER (x.com) SERVICES   Twitter (x.com) - Likes ~ 200k ~ 10k/days ~ Asian | Start from $1.187 per 1000 Twitter (x.com) - Retweets ~ 200k ~ 10k/days ~ Asian | Start from $0.894 per 1000 Twitter (x.com) - Followers | Non-Drop | 30 Days Refill | Auto Refill Every 1 Hours | Start from $19.50 per 1000 Twitter (x.com) - Likes ~ 350k ~ 2k-10k/days ~ Mixed ~ | Start from $1.727 per 1000 Twitter (x.com) - Tweet Views ~ Max 100M ~ Refill 30D ~ 10M/days ~ Instant | Start from $0.032 per 1000 Twitter (x.com) - Tweet Impression ~ Max 1M ~ 1M/days ~ Instant | Start from $0.114 per 1000   ㅤㅤTHREADS   Threads - Likes ~ No Refill ~ 1k-10k/days ~ 0-1hrs  | Start from $1.045 per 1000 Threads - Followers ~ 500-1k/days ~ No Refill ~ Instant | Start from $2.438 per 1000 Threads - Reshare ~ 1k-5k/days ~ Refill 30D ~ 0-2hrs  | Start from $8.125  per 1000   ㅤㅤLIKEE   Likee - Follower ~ Max 30k ~ Real ~ Instant | Start from $10.112 per 1000 Likee - Likes ~ Max 30k ~ Real ~ Instant | Start from $3.787 per 1000 Likee - Shares ~ Max 30k ~ Real ~ Instant | Start from $2.649 per 1000 Likee - Comments ~ Max 30k ~ Real ~ Instant | Start from $11.473 per 1000 Likee - Views ~ Max 1m ~ Real ~ Instant | Start from $3.787 per 1000   ㅤㅤTIKTOK SERVICES   TikTok - Views ~ 10k-100k/days | Start from $0.033 per 1000 TikTok - Likes + Views ~ 30D ~ 3k-5k/days | Start from $0.203 per 1000 TikTok - Followers ~ 30D ~ 5k/days | Start from $2.474 per 1000 TikTok - Shares ~ 30D ~ 1M/days | Start from $0.163 per 1000 TikTok - Save ~ 30D ~ 3k-5k/days | Start from $0.163  per 1000   ㅤㅤFACEBOOK SERVICES   Facebook - Video Views ~ 5k-100k/days | Start from $0.11 per 1000 Facebook - Post Likes ~ 5k/days | Start from $2.548 per 1000 Facebook - Page Likes + Followers ~ 1k-10k/days ~ Instant | Start from $0.85 per 1000 Facebook - Share ~ 30D ~ 1k-5k/days | Start from $1.451 per 1000 Facebook - Post/Photo likes ~ 20k ~ LifeTime ~ 1k-50k/days ~ Instant | Start from 0.66$ per 1000 Facebook - Emoticons Post Likes ~ 1k-5k/Days ~ INSTANT | Start from $0.943 per 1000 Facebook Live Stream [ Watch 15 Minute ] | Start from $1.338 per 1000 Facebook - Video/Reels Views ~ 3 Sec ~ 500k-1m/days | Start from $0.11 per 1000   ㅤㅤREDDIT SERVICES   Reddit Channel Subscribers [Refill 30 Days] [Max: 100M] [Start Time: 0 -1 Hour] [Speed: 5M/Day] | Start from $2.08 per 1000 Reddit Shares | 500M | Refill: Lifetime | ULTRAFAST | 0-10 Min | 100M/Day | Start from $0.371 per 1000 Reddit Views | 500M | Refill: Lifetime | ULTRAFAST | 0-10 Min | 100M/Day | Start from $0.371 per 1000 Reddit View + Shares | 500M | Refill: Lifetime | ULTRAFAST | 0-10 Min | 100M/Day | Start from $0.741 per 1000 Reddit Link Shares | 500M | Refill: Lifetime | ULTRAFAST | 0-10 Min | 100M/Day | Start from $0.371 per 1000   ㅤㅤDISCORD SERVICES   Discord Offline Members | READ THE DESCRIPTION | ADD BOT | HQ | MAX 5K | Start from $1.58 per 1000 Discord Global Online Server Members | +2 Month Online | Max 15K | Start from $108.986 per 1000 Discord Server Boosts | For 1/3/6/12 Months | 1x-14x boosts | Start from 2.23$ per 1 boost Discord | Only Reactions | UHQ | Instant Start | Start from $5.695 per 1000   ㅤㅤLINKEDIN SERVICES   LinkedIn - Profile Followers ~ Max 1k ~ Refill 30D ~ 500-1k/days ~ 0-1Hrs | Start from $21.97 per 1000 LinkedIn - Page Followers ~ Max 1k ~ Refill 30D ~ 500-1k/days ~ 0-1Hrs | Start from $21.97 per 1000 Linkedin - Post Likes [+ Impressions ] ~ Refill 30D ~ 500/days ~ Instant | Start from $16.90 per 1000 Linkedin - Comments [ Random ] ~ Max 1k ~ No Refill ~ 30-50/days ~ 1-6hrs | Start from $28.73 per 1000 LinkedIn - Connection ~ Refill 30D ~ 500/days ~ Instant | Start from $28.73  per 1000   ㅤㅤYOUTUBE SERVICES   YouTube - Views ~ LifeTime ~ 500k-1M/Days | Start from $1.488 per 1000 YouTube - Likes ~ No Refill ~ 1k-5k/days ~ Instant  | Start from $0.13 per 1000 Youtube - Subscribers | MQ 5K | 250-500 Per Day R30 | Start from $78.00 per 1000 YouTube - Comments ~ Random ~ 100k ~ No Refill ~ 1k-5k/days ~ 0-3Hrs | Start from $19.013 per 1000 YouTube - Shorts Likes ~ 50k-60k/days ~ Refill 30D - Instant | Start from $1.30 per 1000 YouTube - Live Stream Reaction ~ Help Small Boosting Live ~ Instant  | Start from $0.192 per 1000     ㅤㅤWHATSAPP SERVICES   WhatsApp Channel Members [ Global-Real ] [ Speed: 500/day ] [ Start: 0-1hrs ] | Start from $15.647 per 1000 WhatsApp Group Members [ Mix Country ] [ Real Quality ] | Start from $30.893 per 1000 WhatsApp Channel Members [ Mix Country ] [ Real Quality ] | Start from $28.179 per 1000 Whatsapp Channel Emoji Reactions | Start from $6.797 per 1000 Whatsapp Channel Post Emoji Reactions | Random Mix |  Start from $3.861 per 1000   ㅤㅤTWITCH/KICK/TROVO SERVICES   Twitch - Followers ~ Max 1k ~ 1k/Days ~ Instant | Start from $0.183 per 1000 Twitch - Video Views ~ Max 20k ~ No Refill ~ 5k/days ~ 0-1Hrs  | Start from $1.073 per 1000 Twitch - Clip Views ~ Max 20k ~ No Refill ~ 5k/days ~ 0-1Hrs | Start from $0.163 per 1000 Twitch Live Views | 10 Minutes | Start from $0.597 per 1000 Trovo Live Followers [Max: 5K] [Offers] [1-2/Hour] [30 Day Refill]  | Start from $18.688 per 1000 Kick - Followers ~ 1.2k ~ No Refill ~ 1k/Days ~ INSTANT | Start from $4.55 per 1000 Kick - Live Viewers - Stable viewers HQ ~ Duration: 60 min | Start from $40.30 per 1000   ㅤㅤSOUNDCLOUD SERVICES   Soundcloud - Followers ~ 2.5k ~ Refill 30D ~ 100-500/days ~ Instant | Start from $7.132 per 1000 Soundcloud - Likes ~ 2.5k ~ Refill 30D ~ 100-500/days ~ Instant | Start from $7.132 per 1000 Soundcloud - Reposts ~ 2.5k ~ Refill 30D ~ 100-500/days ~ Instant | Start from $7.132 per 1000   ㅤㅤSPOTIFY SERVICES   Spotify - Followers ~ 292k ~ 20k/days | Start from $4.225 per 1000 Spotify - Saves ~ 400k ~ 20k/days | Start from $0.488 per 1000 Spotify - Monthly Listeners ~ LifeTime ~ 5k-20k/days | Start from $1.788  per 1000   ㅤㅤQUORA SERVICES   Quora.com - Upvote ~ Max 10k ~ Refill 30D  | Start from $8.125 per 1000 Quora.com - Shares ~ Max 10k ~ Refill 30D  | Start from $8.125 per 1000 Quora.com - Followers ~ Max 10k ~ Refill 30D  | Start from $8.45 per 1000   ㅤㅤWEBSITE TRAFFIC Worldwide / GEO Target - Custom Referral Traffic | Start from $1.284 per 1000 visits WorldWide Traffic from Google.com [Organic] [Custom Keywords] | Start from $0.244 per 1000 visits WorldWide Traffic from Google.com | Start from $0.244 per 1000 visits WorldWide Traffic from Facebook  | Start from $0.244 per 1000 visits WorldWide Traffic from Instagram | Start from $0.244 per 1000 visits WorldWide Traffic from Quora | Start from $0.244 per 1000 visits WorldWide Traffic from Reddit | Start from $0.244 per 1000 visits WorldWide Traffic from YouTube | Start from $0.244 per 1000 visits WorldWide Traffic from Twitter | Start from $0.244 per 1000 visits Attention: this text block does not represent our full product range; for more details, please visit the relevant links below!   If you have any questions, our support team is always ready to help!   Available payment methods: via PayPal, any cryptocurrency (+Binance Pay), Telegram Stars, Cash App, or any bank card.   ⭐ Our SMM-Panel for social media promotion ⭐ SOCNET.PRO ⭐ Our online store⭐  SOCNET.STORE ⭐ Our Telegram Stars bot ⭐ SOCNET.CC ⭐ Telegram store ⭐ SOCNET.SHOP   ⭐ News: ⭐ ➡ Telegram channel ➡ WhatsApp channel ➡ Discord server ⭐ Contacts and support: ⭐ ➡ Telegram support ➡ WhatsApp support ➡ Discord support: socnet_support ➡ Email support: solomonbog@socnet.store We have been operating for a long time and have gathered a huge list of reviews about our work! Our large list of positive and honest reviews is presented on our website! ⭐ Get a $1 bonus for your first test run ⭐ Just submit a support ticket with the subject “Get Trial Bonus” on our website. Go to SMM Panel (clickable) or contact our bot support ⭐ We invite you to COOPERATE and EARN with us ⭐   Want to sell your product or service in our stores and earn money?   Become our partner or propose mutually beneficial cooperation?   You can contact us via the CONTACTS provided in this topic.   FAQ and Refund Policy If you have any questions or issues, our fast support service is ready to respond to your requests! A refund for a service that does not fully meet the requirements or fails to meet the stated quality will only be issued if the product description specified a warranty and the period of good faith warranty. In other cases, a refund for the service will not be fully processed and will not be issued! By purchasing such a service, you automatically agree to our refund rules for undelivered services! We currently accept CRYPTOMUS, Payeer, NotPayments, Perfect Money, Russian and Ukrainian bank cards, AliPay, BinancePay, CryptoBot, credit bank cards, and PayPal. The $1 registration bonus can only be used for purchases and only once after the user's first registration in any of the socnet projects. We value every customer and provide replacements for invalid accounts via our contacts! p.s: The purchase bonus can be used in any SOCNET projects: online store or Telegram bots.
    • if is pvp server change type to raidboss 🙂 and check stats from xml
    • Hello community, I’d like to share an improved version of the L2smr editor for StaticMeshes, focused on solving some workflow issues I found in the original tool. CreditsThis project is based on the original acmi/L2smr repository https://github.com/acmi/L2smr , created by acmi, and I updated it to Java 17 with some additional features. Issues in the original L2smr Too many windows: each StaticMesh opened in a new one → cluttered desktop. No search: navigating through hundreds of StaticMeshActors was slow and tedious. Added improvements Flexible views Single Window Mode: reuse one window instead of opening new ones. Multiple Window Mode: still available for those who prefer having several views open simultaneously. Real-time Search Field Instant filtering as you type. Case-insensitive search. “Reset” button to quickly clear the search.     Installation and Execution: Clone the repository: git clone https://github.com/Jeep12/l2smr.git cd l2smr        2.Build the project:   ./gradlew build        3. Run the application:     ./run.bat      Or simply double-click on run.bat.     The run.bat script automatically extracts JavaFX from the included javafx-17.0.2.zip file in the javafx/ directory, sets up the required libraries, and launches the application. You don’t    need to install JavaFX separately.      Repository: https://github.com/Jeep12/l2smr     Maybe these features already existed in another version or fork, and they might not be very big changes, but since I didn’t know about them and found them necessary, I decided to          implement them myself and wanted to share them.      
  • 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