Jump to content
  • 0

[-Teleport-]*Premium Tab


criss22

Question

Hi all, how i can make Second Tab to work just for premium users?

lF9o7sQ.png

I try 

if (!activeChar.isPremium() && !activeChar.isGM())
			{
				activeChar.sendMessage("Only Premium chars can teleport there.");
				return;
			}

but no work..nothing happend!

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

You can add in RequestByPassToServer (clientpacket)

Quote

else if (_command.startsWith("premium")){    
    if(!player.isPremium()){
        player.sendMessage("Only Premium chars can teleport there.");
        return;
    }
    StringTokenizer st = new StringTokenizer(_command);
    st.nextToken();
            
    int x = Integer.parseInt(st.nextToken());
    int y = Integer.parseInt(st.nextToken());
    int z = Integer.parseInt(st.nextToken());
    player.teleportTo(x , y, z, 20);    
}

 

and html part

Quote

<a action="bypass -h npc_%objectId%_premium X Y Z ">Premium Drop</a>

where X Y Z , the location you want to teleport the players.

 

In the other hand you can do it as the nobless teleport quest do,you can check your quests and do it by the same way.

Edited by @IcathiaLord
Link to comment
Share on other sites

  • 0

Logic seems coorext. Yet you didn't show where you put it. That may be the problem.

 

No, don't use bypass with self defined xyz. It can be exploited. Simply use normal teleport logic. Do exactly the same system as noblesse teleport. Add new param to xml coords.

Link to comment
Share on other sites

  • 0
else if (command.startsWith(_servicesBBSCommand + "_teleport"))
		{
			BoardsManager.getInstance().addBypass(activeChar, "Service Teleport", command);
			content = HtmCache.getInstance().getHtm(activeChar, activeChar.getHtmlPrefix(), "data/html/CommunityBoard/services/gatekeeper/premium.htm");
			separateAndSend(content, activeChar);
			
			if (!CommunityServicesConfigs.COMMUNITY_SERVICES_TP_ALLOW)
			{
				activeChar.sendMessage("This function is disabled by admin.");
				return;
			}
			
			if (!activeChar.isPremium() || activeChar.isInCombat() || activeChar.isJailed() || activeChar.isAlikeDead() || activeChar.isInOlympiadMode() || activeChar.inObserverMode() || SunriseEvents.isInEvent(activeChar) || OlympiadManager.getInstance().isRegistered(activeChar))
			{
				activeChar.sendMessage("Cannot use at the moment.");
				return;
			}
			
			try
			{
				String tp = commandSeperator(command);
				Integer[] c = new Integer[3];
				c[0] = TopListsLoader.getInstance().getTeleportInfo(Integer.parseInt(tp))[0];
				c[1] = TopListsLoader.getInstance().getTeleportInfo(Integer.parseInt(tp))[1];
				c[2] = TopListsLoader.getInstance().getTeleportInfo(Integer.parseInt(tp))[2];
				boolean onlyForNobless = TopListsLoader.getInstance().getTeleportInfo(Integer.parseInt(tp))[3] == 1;
				int itemIdToGet = TopListsLoader.getInstance().getTeleportInfo(Integer.parseInt(tp))[4];
				int price = TopListsLoader.getInstance().getTeleportInfo(Integer.parseInt(tp))[5];
				
				if (!CommunityServicesConfigs.ALLOW_TELEPORT_DURING_SIEGE)
				{
					if (SiegeManager.getInstance().getSiege(c[0], c[1], c[2]) != null)
					{
						activeChar.sendPacket(SystemMessageId.NO_PORT_THAT_IS_IN_SIGE);
						return;
					}
					else if (TownManager.townHasCastleInSiege(c[0], c[1]) && activeChar.isInsideZone(ZoneIdType.TOWN))
					{
						activeChar.sendPacket(SystemMessageId.NO_PORT_THAT_IS_IN_SIGE);
						return;
					}
				}
				
				if (Conditions.checkPlayerItemCount(activeChar, itemIdToGet, price))
				{
					if (onlyForNobless && !activeChar.isNoble() && !activeChar.isGM())
					{
						activeChar.sendMessage("Only noble chars can teleport there.");
						return;
					}
					
					if (activeChar.isTransformed())
					{
						if ((activeChar.getTransformationId() == 9) || (activeChar.getTransformationId() == 8))
						{
							activeChar.untransform();
						}
					}
					
					if (activeChar.isInsideZone(ZoneIdType.PEACE) || activeChar.isGM())
					{
						activeChar.setInstanceId(0);
						activeChar.teleToLocation(c[0], c[1], c[2]);
					}
					else
					{
						activeChar.abortCast();
						activeChar.abortAttack();
						activeChar.sendPacket(ActionFailed.STATIC_PACKET);
						activeChar.getAI().setIntention(CtrlIntention.AI_INTENTION_IDLE);
						activeChar.setTarget(activeChar);
						activeChar.disableAllSkills();
						Broadcast.toSelfAndKnownPlayersInRadius(activeChar, new MagicSkillUse(activeChar, 1050, 1, 0, 0), 810000);
						activeChar.sendPacket(new SetupGauge(SetupGauge.BLUE, 0));
						activeChar.setSkillCast(ThreadPoolManager.getInstance().scheduleGeneral(new Teleport(activeChar, c[0], c[1], c[2]), 0));
						activeChar.forceIsCasting(10 + GameTimeController.getInstance().getGameTicks() + (0 / GameTimeController.MILLIS_IN_TICK));
					}
					
					activeChar.destroyItemByItemId("Community Teleport", itemIdToGet, price, activeChar, true);
				}
				
			}
			
			catch (Exception e)
			{
				SecurityActions.startSecurity(activeChar, SecurityType.COMMUNITY_SYSTEM);
			}
		}
		else if (command.startsWith(_servicesBBSCommand + "_teleport"))
		{
			BoardsManager.getInstance().addBypass(activeChar, "Service Teleport", command);
			content = HtmCache.getInstance().getHtm(activeChar, activeChar.getHtmlPrefix(), "data/html/CommunityBoard/services/gatekeeper/normal.htm");
			separateAndSend(content, activeChar);
			
			if (!CommunityServicesConfigs.COMMUNITY_SERVICES_TP_ALLOW)
			{
				activeChar.sendMessage("This function is disabled by admin.");
				return;
			}
			
			if (activeChar.isInCombat() || activeChar.isJailed() || activeChar.isAlikeDead() || activeChar.isInOlympiadMode() || activeChar.inObserverMode() || SunriseEvents.isInEvent(activeChar) || OlympiadManager.getInstance().isRegistered(activeChar))
			{
				activeChar.sendMessage("Cannot use at the moment.");
				return;
			}
			
			try
			{
				String tp = commandSeperator(command);
				Integer[] c = new Integer[3];
				c[0] = TopListsLoader.getInstance().getTeleportInfo(Integer.parseInt(tp))[0];
				c[1] = TopListsLoader.getInstance().getTeleportInfo(Integer.parseInt(tp))[1];
				c[2] = TopListsLoader.getInstance().getTeleportInfo(Integer.parseInt(tp))[2];
				boolean onlyForNobless = TopListsLoader.getInstance().getTeleportInfo(Integer.parseInt(tp))[3] == 1;
				int itemIdToGet = TopListsLoader.getInstance().getTeleportInfo(Integer.parseInt(tp))[4];
				int price = TopListsLoader.getInstance().getTeleportInfo(Integer.parseInt(tp))[5];
				
				if (!CommunityServicesConfigs.ALLOW_TELEPORT_DURING_SIEGE)
				{
					if (SiegeManager.getInstance().getSiege(c[0], c[1], c[2]) != null)
					{
						activeChar.sendPacket(SystemMessageId.NO_PORT_THAT_IS_IN_SIGE);
						return;
					}
					else if (TownManager.townHasCastleInSiege(c[0], c[1]) && activeChar.isInsideZone(ZoneIdType.TOWN))
					{
						activeChar.sendPacket(SystemMessageId.NO_PORT_THAT_IS_IN_SIGE);
						return;
					}
				}
				
				if (Conditions.checkPlayerItemCount(activeChar, itemIdToGet, price))
				{
					if (onlyForNobless && !activeChar.isNoble() && !activeChar.isGM())
					{
						activeChar.sendMessage("Only noble chars can teleport there.");
						return;
					}
					
					if (activeChar.isTransformed())
					{
						if ((activeChar.getTransformationId() == 9) || (activeChar.getTransformationId() == 8))
						{
							activeChar.untransform();
						}
					}
					
					if (activeChar.isInsideZone(ZoneIdType.PEACE) || activeChar.isGM())
					{
						activeChar.setInstanceId(0);
						activeChar.teleToLocation(c[0], c[1], c[2]);
					}
					else
					{
						activeChar.abortCast();
						activeChar.abortAttack();
						activeChar.sendPacket(ActionFailed.STATIC_PACKET);
						activeChar.getAI().setIntention(CtrlIntention.AI_INTENTION_IDLE);
						activeChar.setTarget(activeChar);
						activeChar.disableAllSkills();
						Broadcast.toSelfAndKnownPlayersInRadius(activeChar, new MagicSkillUse(activeChar, 1050, 1, 0, 0), 810000);
						activeChar.sendPacket(new SetupGauge(SetupGauge.BLUE, 0));
						activeChar.setSkillCast(ThreadPoolManager.getInstance().scheduleGeneral(new Teleport(activeChar, c[0], c[1], c[2]), 0));
						activeChar.forceIsCasting(10 + GameTimeController.getInstance().getGameTicks() + (0 / GameTimeController.MILLIS_IN_TICK));
					}
					
					activeChar.destroyItemByItemId("Community Teleport", itemIdToGet, price, activeChar, true);
				}
				
			}
			
			catch (Exception e)
			{
				SecurityActions.startSecurity(activeChar, SecurityType.COMMUNITY_SYSTEM);
			}
		}

With this setting, without Premium, i can use teleport at Premium tab

Link to comment
Share on other sites

Join the conversation

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

Guest
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

    • New Webite and Update have been released: https://somikpatch.com/Updates   All upcoming updates and infromation will be posted on the website.
    • POWERFUL BLACK MAGIC LOVE SPELL CASTERS SPIRITUAL VOODOO SPELLS CASTER uk usa ,Italy, JaMAICA South Africa,UK,USA Gauteng, Germiston, Glenanda, Sandton, Soweto, Tembisa, Heidelberg, Jeffreys Bay, Johannesburg RANDBURG Virginia Indiana Kentucky Missouri Georgia North Carolina Kentucky Ohio Alabama Nevada Oklahoma Colorado New Mexico Minnesota Louisiana Kansas Colorado North Carolina Michigan Oregon South Carolina Nebraska Arkansas Florida Utah Mississippi Indiana Arizona South Carolina Texas California Louisiana New Mexico Oklahoma Washington Missouri Maryland Iowa Idaho Maine +27630699577 DEATH SPELL / REVENGE SPELLS CASTER IN U.S.A U.K, SWITZERLAND,AMERICA,ENGLAND, CANADA. INSTANT DEATH SPELLS TO KILL ENEMIES ,Effective True Love Spells Caster, Bring Back Lost Love Spells, Voodoo Spells Caster To Stop Cheating, Black Magic Spell Caster, Death & Revenge Spells In Australia, USA, UK, Canada, Mauritius. Bring Back Lost Love Spell Caster in Tasmania Victoria West Norway Hull London Powerful Spiritual Traditional Herbalist Healer experienced in Ancestral healing and spell casting, Astrologers, African Medicines, Ritualism, Herbalist healers, Spiritual healers, Native healer, Philosophy, Traditional healers, Herbal remedies, holistic healing based in Johannesburg, Pretoria Sandton, Midrand, Centurion, South Africa. Dubai – Dubai, Abu Dhabi-AbuDhabi, Sharjah-Sharjah, Al Ain-Abu Dhabi, Ajman-Ajman, Al Gharbia-Abu Dhabi, Ras Al Khaimah-Ras al Khaimah, Fujairah-Fujairah, Dibba-Fujairah, Um AlQuwain-Um Al Quwain New York -New York, Los Angeles California, Phoenix Arizona Chicago Illinois, Houston-Texas – Philadelphia Pennsylvania -San Antonio Texas -San Diego, Ecuador, Egypt, Eritrea, Estonia, Ethiopia, Finland, Fiji, France, Gabon, Gambia, Georgia, south Australia. Black magic lottery spells caster in Germany, Ghana, Greece, Grenada, Guatemala, Guinea, Guinea-Bissau, Guyana, Haiti, Honduras Approved Lottery and Money spells that work fast in Netherlands, Germany, Ghana, Greece, Grenada, Guatemala, Guinea, Guinea- Bissau, Guyana, Haiti, Honduras Most Powerful Spell Caster in the world, Hong, Kong, Hungary, Iceland, India, Indonesia, Iran, Iraq, Ireland, Israel, Italy, Jamaica, Japan, Jordan, Kazakhstan Psychic Lottery Spells in Canada, Hong, Kong, Hungary, Iceland, India, Indonesia, Iran, Iraq, Ireland, Israel, Italy, Jamaica, Japan, Jordan, Kazakhstan +27630699577 Same day Lottery Spells and Money Spells in Hong, Kong, Hungary, Iceland, India, Indonesia, Iran, Iraq , Ethiopia, Fiji, Finland, France, Gabon, Gambia, The Georgia, Germany, Mauritius, Greece, Grenada, Guatemala, Guinea, Guinea-Bissau, Guyana, Haiti Love Spells To Make Him Or Her Come Back Grenada, Guatemala, Guinea, Guinea- Bissau, Guyana, Haiti, Holy See, Honduras, Hong Kong, Hungary, Iceland, Indonesia Bring Back Lost Love Spells 24 Hours Grenada, Guatemala, Guinea, Guinea-Bissau, Guyana, Haiti, Holy See, Honduras, Hong Kong, Hungary, Iceland, Indonesia 100% Black magic Spells | Stop Divorce spell in Kansas, Colombia, Greater Poland, Ireland, Vienna, Salzburg, Syria. Candle Love Spells That Work Fast Grenada, Guatemala, Guinea, Guinea-Bissau, Guyana, Haiti, Holy See, Honduras, Hong Kong, Hungary, Iceland, Indonesia World Love Spells Casters In South Africa, Iran, Iraq, Ireland, Israel, Italy, Jamaica , Japan, Jordan, Kazakhstan, Kenya, Kiribati, Korea, North, South, Kosovo, Kuwait. Best Love Spells In Iran, Iraq, Ireland, Israel, Italy, Jamaica, Japan, Jordan, Kazakhstan, Kenya, Kiribati, Korea. +27630699577 Most Effective True Love Spells Caster, Bring Back Lost Love Spells, Voodoo Spells Caster To Stop Cheating, Black Magic Spell Caster, Death & Revenge Spells In Singapore, Norway, Ecuador, France, Greece, Honduras, Ireland, Hungary, Iceland, Italy, Israel, Poland, Jordan, Colombia, Luxembourg, Switzerland, United Arab Emirates, Brunei, San Marino, Denmark, Netherlands, Malta, Spain, Cyprus, Slovenia, Lithuania, Malaysia, Estonia , Croatia, Belgium, Austria, Germany, Australia, Sweden, New Zealand, Canada, Indonesia, Seychelles, Bahamas, Panama, Finland, England, London, Namibia, Wales, Scotland Call or whatsapp : Baba Joseph Whatsapp; +27630699577 Email; babajoseph467@gmail.com
    • POWERFUL BLACK MAGIC LOVE SPELL CASTERS SPIRITUAL VOODOO SPELLS CASTER uk usa ,Italy, JaMAICA South Africa,UK,USA Gauteng, Germiston, Glenanda, Sandton, Soweto, Tembisa, Heidelberg, Jeffreys Bay, Johannesburg RANDBURG Virginia Indiana Kentucky Missouri Georgia North Carolina Kentucky Ohio Alabama Nevada Oklahoma Colorado New Mexico Minnesota Louisiana Kansas Colorado North Carolina Michigan Oregon South Carolina Nebraska Arkansas Florida Utah Mississippi Indiana Arizona South Carolina Texas California Louisiana New Mexico Oklahoma Washington Missouri Maryland Iowa Idaho Maine +27630699577 DEATH SPELL / REVENGE SPELLS CASTER IN U.S.A U.K, SWITZERLAND,AMERICA,ENGLAND, CANADA. INSTANT DEATH SPELLS TO KILL ENEMIES ,Effective True Love Spells Caster, Bring Back Lost Love Spells, Voodoo Spells Caster To Stop Cheating, Black Magic Spell Caster, Death & Revenge Spells In Australia, USA, UK, Canada, Mauritius. Bring Back Lost Love Spell Caster in Tasmania Victoria West Norway Hull London Powerful Spiritual Traditional Herbalist Healer experienced in Ancestral healing and spell casting, Astrologers, African Medicines, Ritualism, Herbalist healers, Spiritual healers, Native healer, Philosophy, Traditional healers, Herbal remedies, holistic healing based in Johannesburg, Pretoria Sandton, Midrand, Centurion, South Africa. Dubai – Dubai, Abu Dhabi-AbuDhabi, Sharjah-Sharjah, Al Ain-Abu Dhabi, Ajman-Ajman, Al Gharbia-Abu Dhabi, Ras Al Khaimah-Ras al Khaimah, Fujairah-Fujairah, Dibba-Fujairah, Um AlQuwain-Um Al Quwain New York -New York, Los Angeles California, Phoenix Arizona Chicago Illinois, Houston-Texas – Philadelphia Pennsylvania -San Antonio Texas -San Diego, Ecuador, Egypt, Eritrea, Estonia, Ethiopia, Finland, Fiji, France, Gabon, Gambia, Georgia, south Australia. Black magic lottery spells caster in Germany, Ghana, Greece, Grenada, Guatemala, Guinea, Guinea-Bissau, Guyana, Haiti, Honduras Approved Lottery and Money spells that work fast in Netherlands, Germany, Ghana, Greece, Grenada, Guatemala, Guinea, Guinea- Bissau, Guyana, Haiti, Honduras Most Powerful Spell Caster in the world, Hong, Kong, Hungary, Iceland, India, Indonesia, Iran, Iraq, Ireland, Israel, Italy, Jamaica, Japan, Jordan, Kazakhstan Psychic Lottery Spells in Canada, Hong, Kong, Hungary, Iceland, India, Indonesia, Iran, Iraq, Ireland, Israel, Italy, Jamaica, Japan, Jordan, Kazakhstan +27630699577 Same day Lottery Spells and Money Spells in Hong, Kong, Hungary, Iceland, India, Indonesia, Iran, Iraq , Ethiopia, Fiji, Finland, France, Gabon, Gambia, The Georgia, Germany, Mauritius, Greece, Grenada, Guatemala, Guinea, Guinea-Bissau, Guyana, Haiti Love Spells To Make Him Or Her Come Back Grenada, Guatemala, Guinea, Guinea- Bissau, Guyana, Haiti, Holy See, Honduras, Hong Kong, Hungary, Iceland, Indonesia Bring Back Lost Love Spells 24 Hours Grenada, Guatemala, Guinea, Guinea-Bissau, Guyana, Haiti, Holy See, Honduras, Hong Kong, Hungary, Iceland, Indonesia 100% Black magic Spells | Stop Divorce spell in Kansas, Colombia, Greater Poland, Ireland, Vienna, Salzburg, Syria. Candle Love Spells That Work Fast Grenada, Guatemala, Guinea, Guinea-Bissau, Guyana, Haiti, Holy See, Honduras, Hong Kong, Hungary, Iceland, Indonesia World Love Spells Casters In South Africa, Iran, Iraq, Ireland, Israel, Italy, Jamaica , Japan, Jordan, Kazakhstan, Kenya, Kiribati, Korea, North, South, Kosovo, Kuwait. Best Love Spells In Iran, Iraq, Ireland, Israel, Italy, Jamaica, Japan, Jordan, Kazakhstan, Kenya, Kiribati, Korea. +27630699577 Most Effective True Love Spells Caster, Bring Back Lost Love Spells, Voodoo Spells Caster To Stop Cheating, Black Magic Spell Caster, Death & Revenge Spells In Singapore, Norway, Ecuador, France, Greece, Honduras, Ireland, Hungary, Iceland, Italy, Israel, Poland, Jordan, Colombia, Luxembourg, Switzerland, United Arab Emirates, Brunei, San Marino, Denmark, Netherlands, Malta, Spain, Cyprus, Slovenia, Lithuania, Malaysia, Estonia , Croatia, Belgium, Austria, Germany, Australia, Sweden, New Zealand, Canada, Indonesia, Seychelles, Bahamas, Panama, Finland, England, London, Namibia, Wales, Scotland Call or whatsapp : Baba Joseph Whatsapp; +27630699577 Email; babajoseph467@gmail.com
    • POWERFUL BLACK MAGIC LOVE SPELL CASTERS SPIRITUAL VOODOO SPELLS CASTER uk usa ,Italy, JaMAICA South Africa,UK,USA Gauteng, Germiston, Glenanda, Sandton, Soweto, Tembisa, Heidelberg, Jeffreys Bay, Johannesburg RANDBURG Virginia Indiana Kentucky Missouri Georgia North Carolina Kentucky Ohio Alabama Nevada Oklahoma Colorado New Mexico Minnesota Louisiana Kansas Colorado North Carolina Michigan Oregon South Carolina Nebraska Arkansas Florida Utah Mississippi Indiana Arizona South Carolina Texas California Louisiana New Mexico Oklahoma Washington Missouri Maryland Iowa Idaho Maine +27630699577 DEATH SPELL / REVENGE SPELLS CASTER IN U.S.A U.K, SWITZERLAND,AMERICA,ENGLAND, CANADA. INSTANT DEATH SPELLS TO KILL ENEMIES ,Effective True Love Spells Caster, Bring Back Lost Love Spells, Voodoo Spells Caster To Stop Cheating, Black Magic Spell Caster, Death & Revenge Spells In Australia, USA, UK, Canada, Mauritius. Bring Back Lost Love Spell Caster in Tasmania Victoria West Norway Hull London Powerful Spiritual Traditional Herbalist Healer experienced in Ancestral healing and spell casting, Astrologers, African Medicines, Ritualism, Herbalist healers, Spiritual healers, Native healer, Philosophy, Traditional healers, Herbal remedies, holistic healing based in Johannesburg, Pretoria Sandton, Midrand, Centurion, South Africa. Dubai – Dubai, Abu Dhabi-AbuDhabi, Sharjah-Sharjah, Al Ain-Abu Dhabi, Ajman-Ajman, Al Gharbia-Abu Dhabi, Ras Al Khaimah-Ras al Khaimah, Fujairah-Fujairah, Dibba-Fujairah, Um AlQuwain-Um Al Quwain New York -New York, Los Angeles California, Phoenix Arizona Chicago Illinois, Houston-Texas – Philadelphia Pennsylvania -San Antonio Texas -San Diego, Ecuador, Egypt, Eritrea, Estonia, Ethiopia, Finland, Fiji, France, Gabon, Gambia, Georgia, south Australia. Black magic lottery spells caster in Germany, Ghana, Greece, Grenada, Guatemala, Guinea, Guinea-Bissau, Guyana, Haiti, Honduras Approved Lottery and Money spells that work fast in Netherlands, Germany, Ghana, Greece, Grenada, Guatemala, Guinea, Guinea- Bissau, Guyana, Haiti, Honduras Most Powerful Spell Caster in the world, Hong, Kong, Hungary, Iceland, India, Indonesia, Iran, Iraq, Ireland, Israel, Italy, Jamaica, Japan, Jordan, Kazakhstan Psychic Lottery Spells in Canada, Hong, Kong, Hungary, Iceland, India, Indonesia, Iran, Iraq, Ireland, Israel, Italy, Jamaica, Japan, Jordan, Kazakhstan +27630699577 Same day Lottery Spells and Money Spells in Hong, Kong, Hungary, Iceland, India, Indonesia, Iran, Iraq , Ethiopia, Fiji, Finland, France, Gabon, Gambia, The Georgia, Germany, Mauritius, Greece, Grenada, Guatemala, Guinea, Guinea-Bissau, Guyana, Haiti Love Spells To Make Him Or Her Come Back Grenada, Guatemala, Guinea, Guinea- Bissau, Guyana, Haiti, Holy See, Honduras, Hong Kong, Hungary, Iceland, Indonesia Bring Back Lost Love Spells 24 Hours Grenada, Guatemala, Guinea, Guinea-Bissau, Guyana, Haiti, Holy See, Honduras, Hong Kong, Hungary, Iceland, Indonesia 100% Black magic Spells | Stop Divorce spell in Kansas, Colombia, Greater Poland, Ireland, Vienna, Salzburg, Syria. Candle Love Spells That Work Fast Grenada, Guatemala, Guinea, Guinea-Bissau, Guyana, Haiti, Holy See, Honduras, Hong Kong, Hungary, Iceland, Indonesia World Love Spells Casters In South Africa, Iran, Iraq, Ireland, Israel, Italy, Jamaica , Japan, Jordan, Kazakhstan, Kenya, Kiribati, Korea, North, South, Kosovo, Kuwait. Best Love Spells In Iran, Iraq, Ireland, Israel, Italy, Jamaica, Japan, Jordan, Kazakhstan, Kenya, Kiribati, Korea. +27630699577 Most Effective True Love Spells Caster, Bring Back Lost Love Spells, Voodoo Spells Caster To Stop Cheating, Black Magic Spell Caster, Death & Revenge Spells In Singapore, Norway, Ecuador, France, Greece, Honduras, Ireland, Hungary, Iceland, Italy, Israel, Poland, Jordan, Colombia, Luxembourg, Switzerland, United Arab Emirates, Brunei, San Marino, Denmark, Netherlands, Malta, Spain, Cyprus, Slovenia, Lithuania, Malaysia, Estonia , Croatia, Belgium, Austria, Germany, Australia, Sweden, New Zealand, Canada, Indonesia, Seychelles, Bahamas, Panama, Finland, England, London, Namibia, Wales, Scotland Call or whatsapp : Baba Joseph Whatsapp; +27630699577 Email; babajoseph467@gmail.com
    • POWERFUL BLACK MAGIC LOVE SPELL CASTERS SPIRITUAL VOODOO SPELLS CASTER uk usa ,Italy, JaMAICA South Africa,UK,USA Gauteng, Germiston, Glenanda, Sandton, Soweto, Tembisa, Heidelberg, Jeffreys Bay, Johannesburg RANDBURG Virginia Indiana Kentucky Missouri Georgia North Carolina Kentucky Ohio Alabama Nevada Oklahoma Colorado New Mexico Minnesota Louisiana Kansas Colorado North Carolina Michigan Oregon South Carolina Nebraska Arkansas Florida Utah Mississippi Indiana Arizona South Carolina Texas California Louisiana New Mexico Oklahoma Washington Missouri Maryland Iowa Idaho Maine +27630699577 DEATH SPELL / REVENGE SPELLS CASTER IN U.S.A U.K, SWITZERLAND,AMERICA,ENGLAND, CANADA. INSTANT DEATH SPELLS TO KILL ENEMIES ,Effective True Love Spells Caster, Bring Back Lost Love Spells, Voodoo Spells Caster To Stop Cheating, Black Magic Spell Caster, Death & Revenge Spells In Australia, USA, UK, Canada, Mauritius. Bring Back Lost Love Spell Caster in Tasmania Victoria West Norway Hull London Powerful Spiritual Traditional Herbalist Healer experienced in Ancestral healing and spell casting, Astrologers, African Medicines, Ritualism, Herbalist healers, Spiritual healers, Native healer, Philosophy, Traditional healers, Herbal remedies, holistic healing based in Johannesburg, Pretoria Sandton, Midrand, Centurion, South Africa. Dubai – Dubai, Abu Dhabi-AbuDhabi, Sharjah-Sharjah, Al Ain-Abu Dhabi, Ajman-Ajman, Al Gharbia-Abu Dhabi, Ras Al Khaimah-Ras al Khaimah, Fujairah-Fujairah, Dibba-Fujairah, Um AlQuwain-Um Al Quwain New York -New York, Los Angeles California, Phoenix Arizona Chicago Illinois, Houston-Texas – Philadelphia Pennsylvania -San Antonio Texas -San Diego, Ecuador, Egypt, Eritrea, Estonia, Ethiopia, Finland, Fiji, France, Gabon, Gambia, Georgia, south Australia. Black magic lottery spells caster in Germany, Ghana, Greece, Grenada, Guatemala, Guinea, Guinea-Bissau, Guyana, Haiti, Honduras Approved Lottery and Money spells that work fast in Netherlands, Germany, Ghana, Greece, Grenada, Guatemala, Guinea, Guinea- Bissau, Guyana, Haiti, Honduras Most Powerful Spell Caster in the world, Hong, Kong, Hungary, Iceland, India, Indonesia, Iran, Iraq, Ireland, Israel, Italy, Jamaica, Japan, Jordan, Kazakhstan Psychic Lottery Spells in Canada, Hong, Kong, Hungary, Iceland, India, Indonesia, Iran, Iraq, Ireland, Israel, Italy, Jamaica, Japan, Jordan, Kazakhstan +27630699577 Same day Lottery Spells and Money Spells in Hong, Kong, Hungary, Iceland, India, Indonesia, Iran, Iraq , Ethiopia, Fiji, Finland, France, Gabon, Gambia, The Georgia, Germany, Mauritius, Greece, Grenada, Guatemala, Guinea, Guinea-Bissau, Guyana, Haiti Love Spells To Make Him Or Her Come Back Grenada, Guatemala, Guinea, Guinea- Bissau, Guyana, Haiti, Holy See, Honduras, Hong Kong, Hungary, Iceland, Indonesia Bring Back Lost Love Spells 24 Hours Grenada, Guatemala, Guinea, Guinea-Bissau, Guyana, Haiti, Holy See, Honduras, Hong Kong, Hungary, Iceland, Indonesia 100% Black magic Spells | Stop Divorce spell in Kansas, Colombia, Greater Poland, Ireland, Vienna, Salzburg, Syria. Candle Love Spells That Work Fast Grenada, Guatemala, Guinea, Guinea-Bissau, Guyana, Haiti, Holy See, Honduras, Hong Kong, Hungary, Iceland, Indonesia World Love Spells Casters In South Africa, Iran, Iraq, Ireland, Israel, Italy, Jamaica , Japan, Jordan, Kazakhstan, Kenya, Kiribati, Korea, North, South, Kosovo, Kuwait. Best Love Spells In Iran, Iraq, Ireland, Israel, Italy, Jamaica, Japan, Jordan, Kazakhstan, Kenya, Kiribati, Korea. +27630699577 Most Effective True Love Spells Caster, Bring Back Lost Love Spells, Voodoo Spells Caster To Stop Cheating, Black Magic Spell Caster, Death & Revenge Spells In Singapore, Norway, Ecuador, France, Greece, Honduras, Ireland, Hungary, Iceland, Italy, Israel, Poland, Jordan, Colombia, Luxembourg, Switzerland, United Arab Emirates, Brunei, San Marino, Denmark, Netherlands, Malta, Spain, Cyprus, Slovenia, Lithuania, Malaysia, Estonia , Croatia, Belgium, Austria, Germany, Australia, Sweden, New Zealand, Canada, Indonesia, Seychelles, Bahamas, Panama, Finland, England, London, Namibia, Wales, Scotland Call or whatsapp : Baba Joseph Whatsapp; +27630699577 Email; babajoseph467@gmail.com
  • Topics

×
×
  • Create New...