Jump to content
  • 0

One more problem


Question

Posted

Mporei kapios na mou simplirwsei afto????

import sys
from net.sf.l2j.gameserver.model.actor.instance import L2PcInstance
from java.util import Iterator
from net.sf.l2j.gameserver             import SkillTable
from net.sf.l2j          import L2DatabaseFactory
from net.sf.l2j.gameserver.model.quest import State
from net.sf.l2j.gameserver.model.quest import QuestState
from net.sf.l2j.gameserver.model.quest.jython import QuestJython as JQuest

NPC=[1234]
ADENA_ID=57
MIN_LEVEL=1
QuestId     = 999
QuestName   = "Buffer"
QuestDesc   = "quest"
InitialHtml = "7180.htm"
print "importing " + "quest" + ": " + str(999) + ": " + "Buffer" + ": " + "Buffer",
class Quest (JQuest) :
def __init__(self,id,name,descr): JQuest.__init__(self,id,name,descr)

def onEvent(self,event,st):
  htmltext = event
  count=st.getQuestItemsCount(57)
  level=st.getPlayer().getLevel()                
  if count < 200000 and level  < 1 :
   htmltext = "<html><head><body>You dont have enough adena or your level is lower than st.getPlayer().getLevel().</body></html>"
  else:
   st.getPlayer().setTarget(st.getPlayer())

	#Chant of Battle
	if event == "1":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1007,3),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-chants.htm"
		st.setState(COMPLETED)

	#Chant of Shielding
	if event == "2":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1009,3),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-chants.htm"
		st.setState(COMPLETED)

	#Chant of Fire
	if event == "3":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1006,3),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-chants.htm"
		st.setState(COMPLETED)

	#Chant of Flame
	if event == "4":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1002,3),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-chants.htm"
		st.setState(COMPLETED)

	#Chant of Life
	if event == "5":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1229,18),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-chants.htm"
		st.setState(COMPLETED)

	#Chant of Fury
	if event == "6":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1251,2),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-chants.htm"
		st.setState(COMPLETED)

	#Chant of Evasion
	if event == "7":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1252,3),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-chants.htm"
		st.setState(COMPLETED)

	#Chant of Rage
	if event == "8":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1253,3),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-chants.htm"
		st.setState(COMPLETED)

	#Chant of Revenge
	if event == "9":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1284,3),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-chants.htm"
		st.setState(COMPLETED)

	#Chant of Vampire
	if event == "10":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1310,4),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-chants.htm"
		st.setState(COMPLETED)

	#Chant of Eagle
	if event == "11":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1309,3),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-chants.htm"
		st.setState(COMPLETED)

	#Chant of Predator
	if event == "12":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1308,3),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-chants.htm"
		st.setState(COMPLETED)

	#Chant of Spirit
	if event == "13":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1362,1),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-chants.htm"
		st.setState(COMPLETED)

	#Chant of Victory
	if event == "14":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1363,1),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-chants.htm"
		st.setState(COMPLETED)

	#Song of Earth
	if event == "15":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(264,1),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-songs.htm"
		st.setState(COMPLETED)

	#Song of Life
	if event == "16":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(265,1),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-songs.htm"
		st.setState(COMPLETED)

	#Song of Water
	if event == "17":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(266,1),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-songs.htm"
		st.setState(COMPLETED)

	#Song of Warding
	if event == "18":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(267,1),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-songs.htm"
		st.setState(COMPLETED)

	#Song of Wind
	if event == "19":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(268,1),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-songs.htm"
		st.setState(COMPLETED)

	#Song of Hunter
	if event == "20":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(269,1),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-songs.htm"
		st.setState(COMPLETED)

	#Song of Invocation
	if event == "21":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(270,1),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-songs.htm"
		st.setState(COMPLETED)

	#Song of Meditation
	if event == "22":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(363,1),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-songs.htm"
		st.setState(COMPLETED)

	#Song of Renewal
	if event == "23":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(349,1),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-songs.htm"
		st.setState(COMPLETED)

	#Song of Champion
	if event == "24":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(364,1),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-songs.htm"
		st.setState(COMPLETED)

	#Song of Vitality
	if event == "25":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(304,1),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-songs.htm"
		st.setState(COMPLETED)

	#Song of Vengeance
	if event == "26":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(305,1),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-songs.htm"
		st.setState(COMPLETED)

	#Song of Flame Guard
	if event == "27":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(306,1),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-songs.htm"
		st.setState(COMPLETED)

	#Song of Storm Guard
	if event == "28":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(308,1),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-songs.htm"
		st.setState(COMPLETED)

	#Shield
	if event == "29":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1040,3),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-buffs.htm"
		st.setState(COMPLETED)

	#Might
	if event == "30":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1068,3),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-buffs.htm"
		st.setState(COMPLETED)

	#Bless Shield
	if event == "31":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1243,3),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-buffs.htm"
		st.setState(COMPLETED)

	#Guidance
	if event == "32":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1240,3),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-buffs.htm"
		st.setState(COMPLETED)

	#Bless the Body
	if event == "33":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1045,6),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-buffs.htm"
		st.setState(COMPLETED)

	#Bless the Soul
	if event == "34":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1048,6),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-buffs.htm"
		st.setState(COMPLETED)

	#Focus
	if event == "35":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1077,3),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-buffs.htm"
		st.setState(COMPLETED)

	#Magic Barrier
	if event == "36":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1036,2),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-buffs.htm"
		st.setState(COMPLETED)

	#Berserker Spirit
	if event == "37":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1062,2),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-buffs.htm"
		st.setState(COMPLETED)

	#Regeneration
	if event == "38":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1044,3),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-buffs.htm"
		st.setState(COMPLETED)

	#Mental Shield
	if event == "39":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1035,1),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-buffs.htm"
		st.setState(COMPLETED)

	#Greater Empower
	if event == "40":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1059,3),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-buffs.htm"
		st.setState(COMPLETED)

	#Death Whisper
	if event == "41":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1242,3),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-buffs.htm"
		st.setState(COMPLETED)

	#Greater Concentration
	if event == "42":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1078,6),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-buffs.htm"
		st.setState(COMPLETED)

	#Haste
	if event == "43":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1086,2),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-buffs.htm"
		st.setState(COMPLETED)

	#Greater Acumen
	if event == "44":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1085,3),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-buffs.htm"
		st.setState(COMPLETED)

	#Wind Walk
	if event == "45":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1204,2),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-buffs.htm"
		st.setState(COMPLETED)

	#Wild Magic
	if event == "46":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1303,2),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-buffs.htm"
		st.setState(COMPLETED)

	#Arcane Protection
	if event == "47":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1354,1),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-buffs.htm"
		st.setState(COMPLETED)

	#Body of Avatar
	if event == "48":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1311,6),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-buffs.htm"
		st.setState(COMPLETED)

	#Prophecy of Fire
	if event == "49":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1356,1),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-buffs.htm"
		st.setState(COMPLETED)

	#Prophecy of Water
	if event == "50":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1355,1),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-buffs.htm"
		st.setState(COMPLETED)

	#Prophecy of Wind
	if event == "51":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1357,1),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-buffs.htm"
		st.setState(COMPLETED)

	#Dance of Warrior
	if event == "52":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(271,1),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-dance.htm"
		st.setState(COMPLETED)

	#Dance of Inspiration
	if event == "53":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(272,1),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-dance.htm"
		st.setState(COMPLETED)

	#Dance of Mystic
	if event == "54":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(273,1),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-dance.htm"
		st.setState(COMPLETED)

	#Dance of Fire
	if event == "55":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(274,1),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-dance.htm"
		st.setState(COMPLETED)

	#Dance of Fury
	if event == "56":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(275,1),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-dance.htm"
		st.setState(COMPLETED)

	#Dance of Concentration
	if event == "57":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(276,1),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-dance.htm"
		st.setState(COMPLETED)

	#Dance of Light
	if event == "58":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(277,1),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-dance.htm"
		st.setState(COMPLETED)

	#Dance of Aqua Guard
	if event == "59":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(307,1),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-dance.htm"
		st.setState(COMPLETED)

	#Dance of Earth Guard
	if event == "60":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(309,1),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-dance.htm"
		st.setState(COMPLETED)

	#Dance of Vampire
	if event == "61":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(310,1),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-dance.htm"
		st.setState(COMPLETED)

	#Dance of Protection
	if event == "62":		
		st.getPlayer().useMagic(SkillTable.getInstance().getInfo(311,1),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-dance.htm"
		st.setState(COMPLETED)

                #Recover my CP
	if event == "63":		
                        st.getPlayer().useMagic(SkillTable.getInstance().getInfo(10001,1),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,100000)
		return "7180-CP.htm"
		st.setState(COMPLETED)

                #Blessing of Noblesse
	if event == "64":		
                        st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1323,1),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-CP.htm"
		st.setState(COMPLETED)

                #Greater Might
	if event == "65":		
                        st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1388,1),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-CP.htm"
		st.setState(COMPLETED)

                #Greater Sheild
	if event == "66":		
                        st.getPlayer().useMagic(SkillTable.getInstance().getInfo(1389,1),False,False)
                        st.getPlayer().restoreHPMP()
		st.takeItems(57,1000000)
		return "7180-CP.htm"
		st.setState(COMPLETED)








   if htmltext != event:
    st.setState(COMPLETED)
    st.exitQuest(1)
  return htmltext

        def onTalk (self,npc,st):
    htmltext = "<html><head><body>I have nothing to say to you</body></html>"
    st.setState(STARTED)
           return "7180.htm"

QUEST       = Quest(997,str(997) + "_" + "Buffer","quest")
CREATED=State('Start',QUEST)
STARTED=State('Started',QUEST)
COMPLETED=State('Completed',QUEST)

QUEST.setInitialState(CREATED)
for npcId in NPC:
QUEST.addStartNpc(7180)
STARTED.addTalkId(7180)
print "...done"

1 answer to this question

Recommended Posts

  • 0
Posted
  def onTalk (self,npc,player):
   st = player.getQuestState(qn)
   htmltext = "<html><head><body>I have nothing to say to you</body></html>"
   st.setState(STARTED)
   return InitialHtml

QUEST       = Quest(QuestId,str(QuestId) + "_" + QuestName,QuestDesc)
CREATED=State('Start',QUEST)
STARTED=State('Started',QUEST)
COMPLETED=State('Completed',QUEST)

QUEST.setInitialState(CREATED)

for npcId in NPC:
QUEST.addStartNpc(npcId)
QUEST.addTalkId(npcId)

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
Answer this question...

×   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

    • Yes i found it later its weird that l2off works that way level 9 it should be the top level. Is anybody who has problem with the boss Core? Because it is moving and i try to fix it
    • New arrivals: Reddit accounts Reddit SelfReg Karma Account | 20-100 POST AND COMMENT KARMA | MIX IP Registered | FORMAT: USERNAME: PASSWORD:EMAIL:MAILPASS: 4$ Reddit Karma Old Brute Account | 1+ KARMA | Full access with login: password:cookies: 2$ Reddit SelfReg Old Account | 1+ KARMA | MIX IP Registered | FORMAT: USERNAME: PASSWORD:EMAIL:MAILPASS: 3$ Ready Reddit accounts with karma and age for fast promotion of posts and comments! Our store’s Reddit account range includes: ➡ Reddit Karma Brute Account | 1 KARMA | Cookies access only (password may be not working) | The cheapest account | Price from: 1$ ➡ Reddit SelfReg Karma Account | 20-100 POST AND COMMENT KARMA | MIX IP Registered | FORMAT: USERNAME: PASSWORD:EMAIL:MAILPASS: 4$ ➡ Reddit Karma Old Brute Account | 1+ KARMA | Full access with login: password:cookies: 2$ ➡ Reddit SelfReg Old Account | 1+ KARMA | MIX IP Registered | FORMAT: USERNAME: PASSWORD:EMAIL:MAILPASS: 3$ ➡ Reddit Karma Brute Account | 20-100 POST AND COMMENT KARMA | MIX IP Registered | FORMAT: USERNAME: PASSWORD:EMAIL:MAILPASS | Price from: 5$ ➡ Reddit Karma Brute Account | 500-1000 POST AND COMMENT KARMA | MIX IP Registered | FORMAT: USERNAME: PASSWORD:EMAIL:MAILPASS | Price from: 9$ ➡ Reddit Karma Brute Account | 1000 Post Karma and 100 comment karma | MIX IP Registered | FORMAT: USERNAME: PASSWORD:EMAIL:MAILPASS | Price from: 15$ ➡ Reddit Karma Brute Account | 2000 Post Karma and 100 comment karma | MIX IP Registered | FORMAT: USERNAME: PASSWORD:EMAIL:MAILPASS | Price from: 20$ ➡ Reddit Karma Brute Account | 3000 Post Karma and 100 comment karma | MIX IP Registered | FORMAT: USERNAME: PASSWORD:EMAIL:MAILPASS | Price from: 25$ ➡ Reddit Karma Brute Account | 5000 Post Karma and 100 comment karma | MIX IP Registered | FORMAT: USERNAME: PASSWORD:EMAIL:MAILPASS | Price from: 35$ ➡ Reddit Karma Brute Account | 10000+ KARMA | MIX IP Registered | FORMAT: USERNAME: PASSWORD:EMAIL:MAILPASS (email is included and working) | Price from: 45$ ➡ Reddit Karma Brute Account | 20000 KARMA | MIX IP Registered | FORMAT: USERNAME: PASSWORD:EMAIL:MAILPASS (email is included and working) | Price from: 60$ ➡ Reddit Karma Brute Account | 50000+ KARMA | MIX IP Registered | FORMAT: USERNAME: PASSWORD:EMAIL:MAILPASS (email is included and working) | Price from: 90$ ➡ Reddit Karma Brute Account | 100000+ KARMA | MIX IP Registered | FORMAT: USERNAME: PASSWORD:EMAIL:MAILPASS (email is included and working) | Price from: 149$ Relevant links: Digital goods store (Website): Go Telegram bot for buying Telegram Stars: Go SMM Panel: Go – promotion of your social media accounts. Store Telegram bot: Go Promotions and special offers: 1. Promo code SEPTEMBER2025 (10% discount) for purchases in our store (Website, bot) in September! You can also use promo code for first purchase: SOCNET (15% discount) 2. Get $1 to store balance or 10-20% discount, just write your username after registration on our website in the following format: "SEND ME BONUS, MY USERNAME IS..." – you need to post it in our forum thread! 3. Get $1 for the first trial launch of SMM Panel: just open a ticket with subject “Get Trial Bonus” on our website (Support). 4. Weekly giveaways of Telegram Stars in our Telegram channel and in our star-purchase bot! News resources: ➡ Telegram channel: https://t.me/accsforyou_shop✅ ➡ WhatsApp channel: https://whatsapp.com/channel/0029Vau0CMX002TGkD4uHa2n✅ ➡ Discord server: https://discord.gg/y9AStFFsrh✅ We are actively looking for suppliers for the following product positions: — Snapchat old and new accounts | With snapscores | Geo: Europe/USA | Full access via email/phone number — Reddit old accounts with post and comment karma from 100 to 100,000+ | Full access via email — LinkedIn old accounts with real connections | Geo: Europe/USA | Full access via email + active 2FA password — Instagram old accounts (2010-2023 years) | Full access via email (possibly with active 2FA password) — Facebook old accounts (2010-2023 years) | Full access via email (possibly with active 2FA password) | With or without friends | Geo: Europe/USA/Asia — Threads accounts | Full access via email (possibly with active 2FA password) — TikTok/Facebook/Google ADS Agency advertising accounts Contact us below — let’s discuss terms! We are always open to other partnership offers as well. Contacts and support: ➡ Telegram: https://t.me/socnet_support✅ ➡ WhatsApp: https://wa.me/79051904467✅ ➡ Discord: socnet_support ✅ ➡ ✉ Email: solomonbog@socnet.store ✅ Also via these contacts you can: — get consultation on bulk purchases — establish partnership (current partners: https://socnet.bgng.io/partners) — become our supplier SocNet — store of digital goods and premium subscriptions ✅
    • New arrivals: Reddit accounts Reddit SelfReg Karma Account | 20-100 POST AND COMMENT KARMA | MIX IP Registered | FORMAT: USERNAME: PASSWORD:EMAIL:MAILPASS: 4$ Reddit Karma Old Brute Account | 1+ KARMA | Full access with login: password:cookies: 2$ Reddit SelfReg Old Account | 1+ KARMA | MIX IP Registered | FORMAT: USERNAME: PASSWORD:EMAIL:MAILPASS: 3$ Ready Reddit accounts with karma and age for fast promotion of posts and comments! Our store’s Reddit account range includes: ➡ Reddit Karma Brute Account | 1 KARMA | Cookies access only (password may be not working) | The cheapest account | Price from: 1$ ➡ Reddit SelfReg Karma Account | 20-100 POST AND COMMENT KARMA | MIX IP Registered | FORMAT: USERNAME: PASSWORD:EMAIL:MAILPASS: 4$ ➡ Reddit Karma Old Brute Account | 1+ KARMA | Full access with login: password:cookies: 2$ ➡ Reddit SelfReg Old Account | 1+ KARMA | MIX IP Registered | FORMAT: USERNAME: PASSWORD:EMAIL:MAILPASS: 3$ ➡ Reddit Karma Brute Account | 20-100 POST AND COMMENT KARMA | MIX IP Registered | FORMAT: USERNAME: PASSWORD:EMAIL:MAILPASS | Price from: 5$ ➡ Reddit Karma Brute Account | 500-1000 POST AND COMMENT KARMA | MIX IP Registered | FORMAT: USERNAME: PASSWORD:EMAIL:MAILPASS | Price from: 9$ ➡ Reddit Karma Brute Account | 1000 Post Karma and 100 comment karma | MIX IP Registered | FORMAT: USERNAME: PASSWORD:EMAIL:MAILPASS | Price from: 15$ ➡ Reddit Karma Brute Account | 2000 Post Karma and 100 comment karma | MIX IP Registered | FORMAT: USERNAME: PASSWORD:EMAIL:MAILPASS | Price from: 20$ ➡ Reddit Karma Brute Account | 3000 Post Karma and 100 comment karma | MIX IP Registered | FORMAT: USERNAME: PASSWORD:EMAIL:MAILPASS | Price from: 25$ ➡ Reddit Karma Brute Account | 5000 Post Karma and 100 comment karma | MIX IP Registered | FORMAT: USERNAME: PASSWORD:EMAIL:MAILPASS | Price from: 35$ ➡ Reddit Karma Brute Account | 10000+ KARMA | MIX IP Registered | FORMAT: USERNAME: PASSWORD:EMAIL:MAILPASS (email is included and working) | Price from: 45$ ➡ Reddit Karma Brute Account | 20000 KARMA | MIX IP Registered | FORMAT: USERNAME: PASSWORD:EMAIL:MAILPASS (email is included and working) | Price from: 60$ ➡ Reddit Karma Brute Account | 50000+ KARMA | MIX IP Registered | FORMAT: USERNAME: PASSWORD:EMAIL:MAILPASS (email is included and working) | Price from: 90$ ➡ Reddit Karma Brute Account | 100000+ KARMA | MIX IP Registered | FORMAT: USERNAME: PASSWORD:EMAIL:MAILPASS (email is included and working) | Price from: 149$ Relevant links: Digital goods store (Website): Go Telegram bot for buying Telegram Stars: Go SMM Panel: Go – promotion of your social media accounts. Store Telegram bot: Go Promotions and special offers: 1. Promo code SEPTEMBER2025 (10% discount) for purchases in our store (Website, bot) in September! You can also use promo code for first purchase: SOCNET (15% discount) 2. Get $1 to store balance or 10-20% discount, just write your username after registration on our website in the following format: "SEND ME BONUS, MY USERNAME IS..." – you need to post it in our forum thread! 3. Get $1 for the first trial launch of SMM Panel: just open a ticket with subject “Get Trial Bonus” on our website (Support). 4. Weekly giveaways of Telegram Stars in our Telegram channel and in our star-purchase bot! News resources: ➡ Telegram channel: https://t.me/accsforyou_shop✅ ➡ WhatsApp channel: https://whatsapp.com/channel/0029Vau0CMX002TGkD4uHa2n✅ ➡ Discord server: https://discord.gg/y9AStFFsrh✅ We are actively looking for suppliers for the following product positions: — Snapchat old and new accounts | With snapscores | Geo: Europe/USA | Full access via email/phone number — Reddit old accounts with post and comment karma from 100 to 100,000+ | Full access via email — LinkedIn old accounts with real connections | Geo: Europe/USA | Full access via email + active 2FA password — Instagram old accounts (2010-2023 years) | Full access via email (possibly with active 2FA password) — Facebook old accounts (2010-2023 years) | Full access via email (possibly with active 2FA password) | With or without friends | Geo: Europe/USA/Asia — Threads accounts | Full access via email (possibly with active 2FA password) — TikTok/Facebook/Google ADS Agency advertising accounts Contact us below — let’s discuss terms! We are always open to other partnership offers as well. Contacts and support: ➡ Telegram: https://t.me/socnet_support✅ ➡ WhatsApp: https://wa.me/79051904467✅ ➡ Discord: socnet_support ✅ ➡ ✉ Email: solomonbog@socnet.store ✅ Also via these contacts you can: — get consultation on bulk purchases — establish partnership (current partners: https://socnet.bgng.io/partners) — become our supplier SocNet — store of digital goods and premium subscriptions ✅
    • Vibe SMS simple and user-friendly We’re building a service where it’s important not only that everything works, but also that it’s convenient and stress-free for you. With Vibe SMS, there’s no unnecessary fuss or complicated rules — just a reliable platform and support when you need it. Here, you’re not just a user; you’re part of a team that values honesty, trust, and convenience for everyone Our website: https://vibe-sms.net/ Our Telegram channel: https://t.me/vibe_sms        
    • Same account Shillien Knight lvl 57 , AVADON HEAVY SET , JEWLERY B. Prophet lvl 57 , C grade armor. I sell both because on same email , different subaccounts   190E  
  • 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