Jump to content

Recommended Posts

Posted

Epeidi siziti8ike poli to 8ema tou skill twn kamael to gnwsto Steal Buffs ka8isa kai to xanaegrapsa

H ekdosi einai gia L2j Freya

 

 

download here:

http://www.axiomfiles.com/Files/365044/StealBuffs.rar

 

or see the code here:

/*
* This program is free software: you can redistribute it and/or modify it under
* the terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later
* version.
* 
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
* 
* You should have received a copy of the GNU General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
* corrected by Tr@C3R 20/10/2010 <http://L2Arya.zapto.org>
*/
package handlers.skillhandlers;

import java.util.ArrayList;
import java.util.logging.Level;

import com.l2jserver.gameserver.handler.ISkillHandler;
import com.l2jserver.gameserver.model.L2Effect;
import com.l2jserver.gameserver.model.L2ItemInstance;
import com.l2jserver.gameserver.model.L2Object;
import com.l2jserver.gameserver.model.L2Skill;
import com.l2jserver.gameserver.model.actor.L2Character;
import com.l2jserver.gameserver.model.actor.L2Npc;
import com.l2jserver.gameserver.model.actor.L2Summon;
import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
import com.l2jserver.gameserver.network.SystemMessageId;
import com.l2jserver.gameserver.network.serverpackets.SystemMessage;
import com.l2jserver.gameserver.skills.Env;
import com.l2jserver.gameserver.skills.Formulas;
import com.l2jserver.gameserver.templates.skills.L2SkillType;

public class StealBuffs implements ISkillHandler
{
private static final L2SkillType[] SKILL_IDS =
{
	L2SkillType.STEAL_BUFF
};

/**
 * 
 * @see com.l2jserver.gameserver.handler.ISkillHandler#useSkill(com.l2jserver.gameserver.model.actor.L2Character, com.l2jserver.gameserver.model.L2Skill, com.l2jserver.gameserver.model.L2Object[])
 */
public void useSkill(L2Character activeChar, L2Skill skill, L2Object[] targets)
{
	// discharge shots
	final L2ItemInstance weaponInst = activeChar.getActiveWeaponInstance();
	if (weaponInst != null)
	{
		if (skill.isMagic())
		{
			if (weaponInst.getChargedSpiritshot() == L2ItemInstance.CHARGED_BLESSED_SPIRITSHOT)
				weaponInst.setChargedSpiritshot(L2ItemInstance.CHARGED_NONE);
			else if (weaponInst.getChargedSpiritshot() == L2ItemInstance.CHARGED_SPIRITSHOT)
				weaponInst.setChargedSpiritshot(L2ItemInstance.CHARGED_NONE);
		}
	}
	else if (activeChar instanceof L2Summon)
	{
		final L2Summon activeSummon = (L2Summon) activeChar;

		if (skill.isMagic())
		{
			if (activeSummon.getChargedSpiritShot() == L2ItemInstance.CHARGED_BLESSED_SPIRITSHOT)
				activeSummon.setChargedSpiritShot(L2ItemInstance.CHARGED_NONE);
			else if (activeSummon.getChargedSpiritShot() == L2ItemInstance.CHARGED_SPIRITSHOT)
				activeSummon.setChargedSpiritShot(L2ItemInstance.CHARGED_NONE);
		}
	}
	else if (activeChar instanceof L2Npc)
		((L2Npc) activeChar)._spiritshotcharged = false;

	L2Character target;
	L2Effect effect;

	int count = (int)skill.getPower();
	for (L2Object obj: targets)
	{
		if (!(obj instanceof L2Character))
			continue;
		target = (L2Character)obj;

		if (target.isDead())
			continue;

		if (!(target instanceof L2PcInstance))
			continue;

		Env env;
		int lastSkillId = 0;
		final L2Effect[] effects = target.getAllEffects();
		final ArrayList<L2Effect> toSteal = new ArrayList<L2Effect>(count);

		for (int i = effects.length; --i >= 0;) // reverse order
		{
			effect = effects[i];
			if (effect == null)
				continue;

			if (!effect.canBeStolen()) // remove effect if can't be stolen
			{
				effects[i] = null;
				continue;
			}

			// if eff time is smaller than 10 sec, will not be stolen, just to save CPU,
			// avoid synchronization(?) problems and NPEs
			if (effect.getPeriod() - effect.getTime() < 10)
			{
				effects[i] = null;
				continue;
			}

			// first pass - only dances/songs
			if (effect.getSkill().isDance() || effect.getSkill().isPassive()
|| effect.getSkill().isToggle()
|| effect.getSkill().isDebuff()
|| effect.getSkill().isHeroSkill()
|| effect.getSkill().isGMSkill()
|| effect.getSkill().getId() == 2 || effect.getSkill().getId() == 8 || effect.getSkill().getId() == 10 || effect.getSkill().getId() == 13  || effect.getSkill().getId() == 21 || effect.getSkill().getId() == 22
|| effect.getSkill().getId() == 25 || effect.getSkill().getId() == 34 || effect.getSkill().getId() == 44 || effect.getSkill().getId() == 45  || effect.getSkill().getId() == 50 || effect.getSkill().getId() == 58
|| effect.getSkill().getId() == 61 || effect.getSkill().getId() == 67 || effect.getSkill().getId() == 72 || effect.getSkill().getId() == 75  || effect.getSkill().getId() == 76 || effect.getSkill().getId() == 77
|| effect.getSkill().getId() == 78 || effect.getSkill().getId() == 80 || effect.getSkill().getId() == 82 || effect.getSkill().getId() == 83  || effect.getSkill().getId() == 86 || effect.getSkill().getId() == 87
|| effect.getSkill().getId() == 88 || effect.getSkill().getId() == 91 || effect.getSkill().getId() == 94 || effect.getSkill().getId() == 99  || effect.getSkill().getId() == 21 || effect.getSkill().getId() == 22
|| effect.getSkill().getId() == 104 || effect.getSkill().getId() == 109 || effect.getSkill().getId() == 110 || effect.getSkill().getId() == 111  || effect.getSkill().getId() == 112 || effect.getSkill().getId() == 121
|| effect.getSkill().getId() == 123 || effect.getSkill().getId() == 130 || effect.getSkill().getId() == 131 || effect.getSkill().getId() == 139  || effect.getSkill().getId() == 176 || effect.getSkill().getId() == 181
|| effect.getSkill().getId() == 230 || effect.getSkill().getId() == 247 || effect.getSkill().getId() == 278 || effect.getSkill().getId() == 282  || effect.getSkill().getId() == 283 || effect.getSkill().getId() == 287
|| effect.getSkill().getId() == 292 || effect.getSkill().getId() == 297 || effect.getSkill().getId() == 298 || effect.getSkill().getId() == 299  || effect.getSkill().getId() == 301 || effect.getSkill().getId() == 303
|| effect.getSkill().getId() == 313 || effect.getSkill().getId() == 327 || effect.getSkill().getId() == 350 || effect.getSkill().getId() == 351  || effect.getSkill().getId() == 355 || effect.getSkill().getId() == 356
|| effect.getSkill().getId() == 357 || effect.getSkill().getId() == 359 || effect.getSkill().getId() == 360 || effect.getSkill().getId() == 395  || effect.getSkill().getId() == 396 || effect.getSkill().getId() == 406
|| effect.getSkill().getId() == 410 || effect.getSkill().getId() == 411 || effect.getSkill().getId() == 413 || effect.getSkill().getId() == 414  || effect.getSkill().getId() == 415 || effect.getSkill().getId() == 416
|| effect.getSkill().getId() == 417 || effect.getSkill().getId() == 419 || effect.getSkill().getId() == 420 || effect.getSkill().getId() == 421  || effect.getSkill().getId() == 423 || effect.getSkill().getId() == 425
|| effect.getSkill().getId() == 438 || effect.getSkill().getId() == 439 || effect.getSkill().getId() == 440 || effect.getSkill().getId() == 441  || effect.getSkill().getId() == 442 || effect.getSkill().getId() == 443
|| effect.getSkill().getId() == 445 || effect.getSkill().getId() == 446 || effect.getSkill().getId() == 447 || effect.getSkill().getId() == 448  || effect.getSkill().getId() == 451 || effect.getSkill().getId() == 453
|| effect.getSkill().getId() == 454 || effect.getSkill().getId() == 469 || effect.getSkill().getId() == 482 || effect.getSkill().getId() == 483  || effect.getSkill().getId() == 490 || effect.getSkill().getId() == 499
|| effect.getSkill().getId() == 521 || effect.getSkill().getId() == 527 || effect.getSkill().getId() == 536 || effect.getSkill().getId() == 538  || effect.getSkill().getId() == 541 || effect.getSkill().getId() == 542
|| effect.getSkill().getId() == 543 || effect.getSkill().getId() == 544 || effect.getSkill().getId() == 545 || effect.getSkill().getId() == 546  || effect.getSkill().getId() == 547 || effect.getSkill().getId() == 548
|| effect.getSkill().getId() == 549 || effect.getSkill().getId() == 550 || effect.getSkill().getId() == 551 || effect.getSkill().getId() == 552  || effect.getSkill().getId() == 553 || effect.getSkill().getId() == 554
|| effect.getSkill().getId() == 555 || effect.getSkill().getId() == 556 || effect.getSkill().getId() == 557 || effect.getSkill().getId() == 558  || effect.getSkill().getId() == 583 || effect.getSkill().getId() == 585
|| effect.getSkill().getId() == 617 || effect.getSkill().getId() == 618 || effect.getSkill().getId() == 622 || effect.getSkill().getId() == 628  || effect.getSkill().getId() == 656 || effect.getSkill().getId() == 657
|| effect.getSkill().getId() == 658 || effect.getSkill().getId() == 659 || effect.getSkill().getId() == 660 || effect.getSkill().getId() == 661  || effect.getSkill().getId() == 662 || effect.getSkill().getId() == 663
|| effect.getSkill().getId() == 664 || effect.getSkill().getId() == 665 || effect.getSkill().getId() == 666 || effect.getSkill().getId() == 667  || effect.getSkill().getId() == 668 || effect.getSkill().getId() == 669
|| effect.getSkill().getId() == 670 || effect.getSkill().getId() == 671 || effect.getSkill().getId() == 672 || effect.getSkill().getId() == 673  || effect.getSkill().getId() == 674 || effect.getSkill().getId() == 678
|| effect.getSkill().getId() == 684 || effect.getSkill().getId() == 710 || effect.getSkill().getId() == 727 || effect.getSkill().getId() == 737  || effect.getSkill().getId() == 748 || effect.getSkill().getId() == 750
|| effect.getSkill().getId() == 760 || effect.getSkill().getId() == 761 || effect.getSkill().getId() == 768 || effect.getSkill().getId() == 769  || effect.getSkill().getId() == 770 || effect.getSkill().getId() == 778
|| effect.getSkill().getId() == 784 || effect.getSkill().getId() == 786 || effect.getSkill().getId() == 788 || effect.getSkill().getId() == 807  || effect.getSkill().getId() == 810 || effect.getSkill().getId() == 811
|| effect.getSkill().getId() == 812 || effect.getSkill().getId() == 813 || effect.getSkill().getId() == 837 || effect.getSkill().getId() == 857  || effect.getSkill().getId() == 858 || effect.getSkill().getId() == 859
|| effect.getSkill().getId() == 860 || effect.getSkill().getId() == 861 || effect.getSkill().getId() == 562 || effect.getSkill().getId() == 863  || effect.getSkill().getId() == 864 || effect.getSkill().getId() == 865
|| effect.getSkill().getId() == 566 || effect.getSkill().getId() == 867 || effect.getSkill().getId() == 868 || effect.getSkill().getId() == 894  || effect.getSkill().getId() == 895 || effect.getSkill().getId() == 913
|| effect.getSkill().getId() == 916 || effect.getSkill().getId() == 917 || effect.getSkill().getId() == 918 || effect.getSkill().getId() == 919  || effect.getSkill().getId() == 922 || effect.getSkill().getId() == 929
|| effect.getSkill().getId() == 930 || effect.getSkill().getId() == 931 || effect.getSkill().getId() == 948 || effect.getSkill().getId() == 956  || effect.getSkill().getId() == 959 || effect.getSkill().getId() == 960
|| effect.getSkill().getId() == 961 || effect.getSkill().getId() == 1047 || effect.getSkill().getId() == 1285 || effect.getSkill().getId() == 1286  || effect.getSkill().getId() == 1287 || effect.getSkill().getId() == 1430
|| effect.getSkill().getId() == 1432 || effect.getSkill().getId() == 1441 || effect.getSkill().getId() == 1457 || effect.getSkill().getId() == 1459  || effect.getSkill().getId() == 1492 || effect.getSkill().getId() == 1493
|| effect.getSkill().getId() == 1494 || effect.getSkill().getId() == 1514 || effect.getSkill().getId() == 1515 || effect.getSkill().getId() == 1520  || effect.getSkill().getId() == 1521 || effect.getSkill().getId() == 1522
|| effect.getSkill().getId() == 1532 || effect.getSkill().getId() == 1533 || effect.getSkill().getId() == 1540 || effect.getSkill().getId() == 2010  || effect.getSkill().getId() == 2011 || effect.getSkill().getId() == 2012
|| effect.getSkill().getId() == 2076 || effect.getSkill().getId() == 2165 || effect.getSkill().getId() == 2168 || effect.getSkill().getId() == 2231  || effect.getSkill().getId() == 2232 || effect.getSkill().getId() == 2248
|| effect.getSkill().getId() == 2249 || effect.getSkill().getId() == 2250 || effect.getSkill().getId() == 2251 || effect.getSkill().getId() == 2252  || effect.getSkill().getId() == 2253 

|| (effect.getSkill().isPotion() && (effect.getSkill().getId() != 2274 && effect.getSkill().getId() != 2341)) )
				continue;

			if (effect.getSkill().getId() != lastSkillId)
			{
				lastSkillId = effect.getSkill().getId();
				count--;
			}

			toSteal.add(effect);
			if (count == 0)
				break;
		}

		if (toSteal.size() == 0)
			continue;

		// stealing effects
		for (L2Effect eff : toSteal)
		{
			env = new Env();
			env.player = target;
			env.target = activeChar;
			env.skill = eff.getSkill();
			try
			{
				effect = eff.getEffectTemplate().getStolenEffect(env, eff);
				if (effect != null)
				{
					effect.scheduleEffect();
					if (effect.getShowIcon() && activeChar instanceof L2PcInstance)
					{
						SystemMessage sm = new SystemMessage(SystemMessageId.YOU_FEEL_S1_EFFECT);
						sm.addSkillName(effect);
						activeChar.sendPacket(sm);
					}
				}
				// Finishing stolen effect
				eff.exit();
			}
			catch (RuntimeException e)
			{
				_log.log(Level.WARNING, "Cannot steal effect: " + eff + " Stealer: " + activeChar + " Stolen: " + target, e);
			}
		}

		//Possibility of a lethal strike
		Formulas.calcLethalHit(activeChar, target, skill);
	}

	if (skill.hasSelfEffects())
	{
		// Applying self-effects
		effect = activeChar.getFirstEffect(skill.getId());
		if (effect != null && effect.isSelfEffect())
		{
			//Replace old effect with new one.
			effect.exit();
		}
		skill.getEffectsSelf(activeChar);
	}
}

/**
 * 
 * @see com.l2jserver.gameserver.handler.ISkillHandler#getSkillIds()
 */
public L2SkillType[] getSkillIds()
{
	return SKILL_IDS;
}

}

 

doulevei apsoga ston L2Arya server mas. pliroforiaka http://L2Arya.zapto.org

 

No guide :) apla rixte to sto gameserver/scripts/handlers/skillhandlers

Posted

Ama to xreiazetai kaneis kai gia epilogue as kanei pm edw kai suntoma 8a tou to grapsw...

 

episis exw grapsei polla gia ton server ... ama mporw na help se tpt pm me... mono oti afora kwdikes omws kai server ri8miseis :)

Posted

Eyxaristw gia tin episimansi... alla

1on den me endiaferei to karma

2on den to exei post allos giati to egrapsa prin 20 meres kai einai to prwto share

3on apla grafw edw gia na ginetai suzitisi kai na enimerwsw oso mporw kosmo me analoga endiaferonta

4on pliroforiaka ( eimai 51 xronwn paizw L2 me tous 3 gious mou 7-8 xronia, kai eimai L2j dev (Tr@C3R))

5on O logos pou to egrapsa einai giati ola ta alla den leitourgoun swsta, toulaxiston opws 8a eprepe

6on an den dokimaseis kati pws mporeis na to krineis?

 

erwtima...

ti einai xeirotero na xereis kai na mi milas i na milas kai na min xereis?

Proswpika gia na kanw auto to post mallon klinw sto prwto perissotero... :)

 

Posted

7-8 χρονια;

 

Τεσπα,ειναι καλο να αρχισεις τα shares αν μπορεις με τετοιου ιδους πραγματα,αλλα τα codes αυτα καλυτερα να ειναι μεσα σε code tags ωστε να τα βλεπουμε κιολας

 

Οτι θεωρεις καλο και δεν το εχεις δει εδω μεσα ποσταρε το

 

 

(ΥΓ:Τι ακριβως προβλημα ειχε αυτο το skill;)

 

Posted

auto to skill ousiastika ston official pou paizoume ediwxe polu kosmo.

Otan to kanei cast 1as kamael ston L2j  klebei apo ton paixti 3-7 buff opoioudipote eidous.. kai kanenas L2j den einai x1.

 

To swsto exei ws exis.

Den prepei na klebei kanena prosopiko buff ta gnwsta typou 'self' pou den ginontai target

To poly 1-3 songs i dance efoson den einai self episis kai fusika kanena debuff.

Ousiastika  proteraiotita sta party buffs 40%, 25% sta target buffs, 25% sta dance kai songs kai 10% se self cast up to 81lvl chars.

Ayta den xreiazontai pass alla orio8etisi. Kati pou kanenas den ekane kai sto epilogue to eixame paratisei me filtro mono basikwn katigoriwn. px nobless, toggle, debuf kai hero.

 

SAuto pou ekana share ola pleon doulevoun opws 8a eprepe. den allazei o xronos cast alla i epilogi perasmatos tou skill enanti twn skill toy antipalou.

 

giati ola auta? paradeigma kanw enan tetoion char, se d-box trexw alt olwn twn clasewn , tous klebw ta self buff kai mpainw sto game me ola ta self buffs twn allwn. Skeftite ti ginetai otan o server exei ola ta buffs 2 wres :)

 

Kai zitw sugnwmi gia tin anastatwsi ... den 8a xanakanw share kati edw ... 8a rix kai to code gia na oloklirw8ei to post-share.

 

Posted

thanks,βαλε αυτο στο 1ο ποστ(καλυτερα ετσι,ωστε ολοι να μπορουν να το κρινουν κατευθειαν χωρις να κατεβαζουν)

επισης,απεφυγε το double post,υπαρχει το edit button

:)

Posted

nai agapite finito apo to 2003 ... einai twra o 8os xronos

Den paizame sunexeia ola ayta ta xronia... apo to 2005 exoume paixei kai wow, lottro kai prosfata afisame to Conan.

Apo to 2006 exw na grapsw kvdikes l2j kai arxisa prosfata pali gia na upostirixw ena server.

Sorry gia tin anastatwsi alla i8ela na help ligo giati blepw erwtimata edw sta post pou ta perissotera exoun kales ews entelws la8os apantiseis...

Kia den 8elw na kri8w egw i to post mou ... giati ana einai na kri8w prwtimw tin gi tis epaggelias. :)

Synepws den 8a zanaenoxlisw ...

Posted

Φίλε καταρχήν καλός όρισες στο Forum. Προσωπικά δεν είχα ακούσει κάτι για αυτό το skill συνεπώς μπράβο για την διόρθωση!

 

Σίγουρα ένας άνθρωπος με αυτήν την ηλικία και την έχει αυτή την ασχολία με αρκετά Online games όπως είπες, πιστεύω πως θα αναρωτήθηκες για την δομή και το πως λειτουργεί ένα παιχνίδι και σου δίνει το δικαίωμα να κάνεις δικό σου "server". Που θέλω να καταλήξω; Στο ότι σίγουρα η γνώση "προγραμματισμού" βοηθάει αρκετά στο να γράφει κώδικες και όσο ασχολείσαι με κάτι αποκτάς και εμπειρία, και το Forum έχει ανάγκη από νέα έμπειρα member. Αυτή ήταν η άποψη μου σε σχέση με τα Reply σου.

Posted

File an itheles n kopsis zampon t gamises sto 51 xronwn dn pisteuo pos 1s 51xronos tha egrafe greeklish 1on) ayto

2on) to code ine lathos gt xalasas t chances tou retail t skill ayto mia xara douleui mia xara klevi t skill k m t sosto pososto. t problem p exi ayto t skill stous l2j servers idika tous pvp ine t reuse time

3on) T effects kai t land rates exoune ftiaxti apo tin official l2j prin mpei freya.. thnx

Posted

Akken me to sumpa8io eisai kai asxetos kai kakoglwssos

 

1on eimai 51 programmatistis me etairia commercial and accounting software stin Ellada.

2on grafw greeklish apo to 1978 ... ama zouses

3on ama den gnwrizeis kati kalutera na masas para na milas

4on Ai! xasou mikro mirmigkaki ... :)

Posted

HellRanger to skill exei ontws problima sta l2j paketa.

To idio to l2j dev team to dior8wse polles fores teleutaia xwris pliri epituxia, giauto ton logo apofasisa na to grapsw.

Gia opoion 8elei na to xrisimopoiisei doulevei swsta kai xwris kanena bug.

Episis exw grapsei prosfata olo to hellbound apo tin arxi me ola ta stadia, ta quest kai ta instance.

Kai auto den itan oloklirwmeno kai den akolou8ouse ta swsta bimata exelixis tou paixnidiou.

Epeidi den exw orexi gia syzitiseis tupou Akken as poume den 8a xanarixw edw tipota allo, alla an 8elete kati sto opoio mporw na boi8isw kante mou pm. Exw arketo uliko apo l2 mias kai o megalos mou gios programmatizei kai autos sunexws se l2j. Kai gia na min lew perissotera an 8elete na deite merika prototupa pragmata stous l2 idiotikous servers kanete 1 account kai mpite ston server tou giou mou. Einai freya kai mpainei me diko mas launcher xwris tin paramikri ry8misi.

Episis eimai stin omada anaptuxis tis Torque T3D, einai mixani gia tin dimiourgia paixnidiwn 3d, polu kali kat'eme (etairia stin USA an endiaferetai kaneis gia anptyxi game as parei to demo tis mixanis apo www.garagegames.com).

To web-site tou L2 server einai L2Arya.zapto.org. Min krinete apo to onoma, den einai home alla host stin Gallia se 256Mbps line.

Exw oli tin kali dia8esi na boi8isw opou mporw ... alla ka8olou dia8esi gia arwstes suzitiseis kai upainigmous.

 

Ta leme en kairw :)

Posted

Akken me to sumpa8io eisai kai asxetos kai kakoglwssos

 

1on eimai 51 programmatistis me etairia commercial and accounting software stin Ellada.

2on grafw greeklish apo to 1978 ... ama zouses

3on ama den gnwrizeis kati kalutera na masas para na milas

4on Ai! xasou mikro mirmigkaki ... :)

1n filo m ok pes pos ise 51

2on kk thnx bye

3on dn t sxoliazw

4on Fail apantisi

5on Site apo tn eteria gia n mathw infos an ontws isxii

6on Dn ipa oti ime k sun certificate developer

7on Pezw official devianne k exw erthi antimetopos m kamael

Posted

Giati kale mou Akken kolises me tin Hlikia mou?

Sou eipa poso eimai kai an i8ela na dwsw ta pragmatika mou stoixeia edw se auto to forum 8a empena me to kanoniko mou onoma kai 8a diafimiza kai tin etairia.:)

 

Epi eukairias teleiwsa ton Arya PvP manager

 

ti kanei autos?

 

einai 1 npc pou metraei ta pvp points pou exeis kai se katatasei se analogo rank.

me basi to rank exeis prosbasi se analoga shops pou exei to mob

apo auta ta shop agorazeis pragmata me antitimo ta fame point sou.

p.x. pws ebala egw ta rank...

 

Arya PvP Manager  npc Dread Lord

 

All items can buy with fame points.

 

PvP RANKS:

Rank 0: 0 to 9 PvP points

( Icarus weapons )

Rank 1: 10 to 49 PvP points

( Vesper weapons, Vorpal Armors )

Rank 2: 50 to 99 PvP points

( Freya s-84 weapons, Elegia Armors)

Rank 3: 100+ PvP points

( Freya HiGrade s-84 weapons )

 

sumantiko einai oti o ka8e paixtis blepei mono ta item tou rank tou, fusika ta xamilotera rank kai fantazetai ta megalutera :)

opoios endiaferetai pm me. kai pls min arxisete ta idia ... den xerw an uparxei kati paromoio kai oute me endiaferei... auto to egrapsa egw exoloklirou x8es kai einai i prwti anafora pou kanw se site.

 

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.    
    • Discord         :  utchiha_market Telegram        : https://t.me/utchiha_market Auto Buy Store  : https://utchiha-market.mysellauth.com/ Not sure if we’re legit? Check Our server — real reviews, real buyers https://discord.gg/uthciha-servicess  | https://campsite.bio/utchihaamkt
  • 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