Jump to content

Interlude Antibot


Recommended Posts

http://www.4shared.com/img/PnpeKHRNce/s25/157e7930310/image

http://www.4shared.com/rar/WiimsNndba/antibot.html Download data files

 

ACIS:

### Eclipse Workspace Patch 1.0
#P aCis_gameserver
Index: java/net/sf/l2j/gameserver/datatables/AntiBotTable.java
===================================================================
--- java/net/sf/l2j/gameserver/datatables/AntiBotTable.java	(revision 0)
+++ java/net/sf/l2j/gameserver/datatables/AntiBotTable.java	(revision 0)
@@ -0,0 +1,183 @@
+/*
+ * 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/>.
+ */
+package net.sf.l2j.gameserver.datatables;
+
+import java.io.ByteArrayOutputStream;
+import java.io.File;
+import java.io.FileInputStream;
+import java.io.IOException;
+import java.util.HashMap;
+import java.util.Map;
+import java.util.Map.Entry;
+import java.util.logging.Level;
+import java.util.logging.Logger;
+
+import net.sf.l2j.gameserver.ThreadPoolManager;
+import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
+import net.sf.l2j.gameserver.network.serverpackets.PledgeImage;
+import net.sf.l2j.util.Rnd;
+
+/**
+ * 
+ * @author Fissban
+ *
+ */
+public class AntiBotTable
+{
+	public static Logger _log = Logger.getLogger(AntiBotTable.class.getName());
+	
+	public static Map<Integer, antiBotData> _imageAntiBotOri = new HashMap<>();
+	public static Map<Integer, antiBotData> _imageAntiBotClient = new HashMap<>();
+	
+	public final static int[] img_antibot_id =
+	{
+		7000, 7001, 7002, 7003, 7004, 7005, 7006, 7007, 7008, 7009
+	};
+	
+	public void loadImage()
+	{
+		LoadImgAntiBot();
+		_log.log(Level.INFO, "loading " + _imageAntiBotOri.size() + " images of AntiBot");
+	}
+	
+	private static void LoadImgAntiBot()
+	{
+		_imageAntiBotOri.clear();
+		int cont = 0;
+		
+		for (int imgId : img_antibot_id)
+		{
+			File image = new File("data/images/antibot/" + imgId + ".dds");
+			_imageAntiBotOri.put(cont, new antiBotData(cont, ConverterImgBytes(image)));
+			cont++;
+		}
+		
+		ThreadPoolManager.getInstance().scheduleGeneralAtFixedRate(new startEncriptCaptcha(), 100, 600000); // 10 Minutes
+	}
+	
+	public void sendImage(L2PcInstance player, int imgId)
+	{
+		PledgeImage packet = null;
+		
+		if ((imgId >= 50000) && (imgId <= 800000))
+		{
+			for (Entry<Integer, antiBotData> entrySet : _imageAntiBotClient.entrySet())
+			{
+				antiBotData imgCoding = entrySet.getValue();
+				
+				if (imgId == imgCoding.getCodificacion())
+				{
+					packet = new PledgeImage(imgId, imgCoding.getImagen());
+				}
+			}
+		}
+		
+		player.sendPacket(packet);
+	}
+	
+	public static class startEncriptCaptcha implements Runnable
+	{
+		public startEncriptCaptcha()
+		{
+			
+		}
+		
+		@Override
+		public void run()
+		{
+			_imageAntiBotClient.clear();
+			
+			for (Entry<Integer, antiBotData> entrySet : _imageAntiBotOri.entrySet())
+			{
+				entrySet.getValue().getImagen();
+				_imageAntiBotClient.put(entrySet.getKey(), new antiBotData(Rnd.get(50000, 800000), entrySet.getValue().getImagen()));
+			}
+		}
+	}
+	
+	public int getAntiBotClientID(int pos)
+	{
+		int returnCoding = 0;
+		
+		for (Entry<Integer, antiBotData> entrySet : _imageAntiBotClient.entrySet())
+		{
+			int numeroImage = entrySet.getKey().intValue(); 
+			
+			if (pos == numeroImage)
+			{
+				antiBotData imgCoding = entrySet.getValue();
+				returnCoding = imgCoding.getCodificacion();
+			}
+			
+			if (pos > 9)
+			{
+				_log.log(Level.SEVERE, "error in getAntiBotClientID...number dont exist");
+			}
+		}
+		return returnCoding;
+	}
+	
+	public static class antiBotData
+	{
+		int _codificacion;
+		byte[] _data;
+		
+		public antiBotData(int codificacion, byte[] data)
+		{
+			_codificacion = codificacion;
+			_data = data;
+		}
+		
+		public int getCodificacion()
+		{
+			return _codificacion;
+		}
+		
+		public byte[] getImagen()
+		{
+			return _data;
+		}
+	}
+	
+	private static byte[] ConverterImgBytes(File imagen)
+	{
+		ByteArrayOutputStream bos = new ByteArrayOutputStream();
+		
+		byte[] buffer = new byte[1024];
+		try (FileInputStream fis = new FileInputStream(imagen))
+		{
+			for (int readNum; (readNum = fis.read(buffer)) != -1;)
+			{
+				bos.write(buffer, 0, readNum);
+			}
+		}
+		catch (IOException e)
+		{
+			_log.log(Level.SEVERE, "Error when converter image to byte[]");
+		}
+		
+		return bos.toByteArray();
+	}
+	
+	public static AntiBotTable getInstance()
+	{
+		return SingletonHolder._instance;
+	}
+	
+	private static class SingletonHolder
+	{
+		protected static final AntiBotTable _instance = new AntiBotTable();
+	}
+}
Index: java/net/sf/l2j/gameserver/GameServer.java
===================================================================
--- java/net/sf/l2j/gameserver/GameServer.java	(revision 13)
+++ java/net/sf/l2j/gameserver/GameServer.java	(working copy)
@@ -35,6 +35,7 @@
 import net.sf.l2j.gameserver.communitybbs.Manager.ForumsBBSManager;
 import net.sf.l2j.gameserver.datatables.AccessLevels;
 import net.sf.l2j.gameserver.datatables.AdminCommandAccessRights;
+import net.sf.l2j.gameserver.datatables.AntiBotTable;
 import net.sf.l2j.gameserver.datatables.ArmorSetsTable;
 import net.sf.l2j.gameserver.datatables.AugmentationData;
 import net.sf.l2j.gameserver.datatables.BookmarkTable;
@@ -309,6 +310,8 @@
 		
 		MovieMakerManager.getInstance();
 		
+		AntiBotTable.getInstance().loadImage();
+		
 		if (Config.DEADLOCK_DETECTOR)
 		{
 			_log.info("Deadlock detector is enabled. Timer: " + Config.DEADLOCK_CHECK_INTERVAL + "s.");
Index: java/net/sf/l2j/Config.java
===================================================================
--- java/net/sf/l2j/Config.java	(revision 13)
+++ java/net/sf/l2j/Config.java	(working copy)
@@ -513,6 +513,13 @@
 	public static boolean STORE_SKILL_COOLTIME;
 	public static int BUFFS_MAX_AMOUNT;
 	
+	/** AntiBot */
+	public static boolean ANTIBOT_ENABLE;
+	public static int ANTIBOT_TIME_JAIL;
+	public static int ANTIBOT_TIME_VOTE;
+	public static int ANTIBOT_KILL_MOBS;
+	public static int ANTIBOT_MIN_LEVEL;
+	
 	// --------------------------------------------------
 	// Server
 	// --------------------------------------------------
@@ -1110,6 +1117,12 @@
 			BUFFS_MAX_AMOUNT = players.getProperty("MaxBuffsAmount", 20);
 			STORE_SKILL_COOLTIME = players.getProperty("StoreSkillCooltime", true);
 			
+			ANTIBOT_ENABLE = players.getProperty("AntiBotEnable", true);
+			ANTIBOT_TIME_JAIL = players.getProperty("AntiBotTimeJail", 1);
+			ANTIBOT_TIME_VOTE = players.getProperty("AntiBotTimeVote", 30);
+			ANTIBOT_KILL_MOBS = players.getProperty("AntiBotKillMobs", 1);
+			ANTIBOT_MIN_LEVEL = players.getProperty("AntiBotMinLevel", 1);				
+			
 			// server
 			ExProperties server = load(SERVER_FILE);
 			
Index: java/net/sf/l2j/gameserver/network/clientpackets/RequestBypassToServer.java
===================================================================
--- java/net/sf/l2j/gameserver/network/clientpackets/RequestBypassToServer.java	(revision 13)
+++ java/net/sf/l2j/gameserver/network/clientpackets/RequestBypassToServer.java	(working copy)
@@ -179,6 +179,18 @@
 				final int arenaId = Integer.parseInt(_command.substring(12).trim());
 				activeChar.enterOlympiadObserverMode(arenaId);
 			}
+			else if (_command.startsWith("antibot"))
+			{
+				StringTokenizer st = new StringTokenizer(_command);
+				st.nextToken();
+				
+				if (st.hasMoreTokens())
+				{
+					activeChar.checkCode(st.nextToken());
+					return;
+				}
+				activeChar.checkCode("Fail");
+			}
 		}
 		catch (Exception e)
 		{
Index: java/net/sf/l2j/gameserver/network/clientpackets/Say2.java
===================================================================
--- java/net/sf/l2j/gameserver/network/clientpackets/Say2.java	(revision 13)
+++ java/net/sf/l2j/gameserver/network/clientpackets/Say2.java	(working copy)
@@ -49,6 +49,7 @@
 	public final static int PARTYROOM_COMMANDER = 15; // (Yellow)
 	public final static int PARTYROOM_ALL = 16; // (Red)
 	public final static int HERO_VOICE = 17;
+	public final static int CRITICAL_ANNOUNCE = 18;
 	
 	private final static String[] CHAT_NAMES =
 	{
@@ -69,7 +70,8 @@
 		"PARTYMATCH_ROOM",
 		"PARTYROOM_COMMANDER",
 		"PARTYROOM_ALL",
-		"HERO_VOICE"
+		"HERO_VOICE",
+		"CRITICAL_ANNOUNCE"
 	};
 	
 	private static final String[] WALKER_COMMAND_LIST =
Index: java/net/sf/l2j/gameserver/network/serverpackets/PledgeImage.java
===================================================================
--- java/net/sf/l2j/gameserver/network/serverpackets/PledgeImage.java	(revision 0)
+++ java/net/sf/l2j/gameserver/network/serverpackets/PledgeImage.java	(revision 0)
@@ -0,0 +1,44 @@
+/*
+ * 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/>.
+ */
+package net.sf.l2j.gameserver.network.serverpackets;
+
+public class PledgeImage extends L2GameServerPacket
+{
+	private final int _crestId;
+	private final byte[] _data;
+	
+	public PledgeImage(int crestId, byte[] data)
+	{
+		_crestId = crestId;
+		_data = data;
+	}
+	
+	@Override
+	protected final void writeImpl()
+	{
+		writeC(0x6c);
+		writeD(_crestId);
+		
+		if (_data != null)
+		{
+			writeD(_data.length);
+			writeB(_data);
+		}
+		else
+		{
+			writeD(0);
+		}
+	}
+}
\ No newline at end of file
Index: java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java
===================================================================
--- java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java	(revision 13)
+++ java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java	(working copy)
@@ -48,6 +48,7 @@
 import net.sf.l2j.gameserver.communitybbs.BB.Forum;
 import net.sf.l2j.gameserver.communitybbs.Manager.ForumsBBSManager;
 import net.sf.l2j.gameserver.datatables.AccessLevels;
+import net.sf.l2j.gameserver.datatables.AntiBotTable;
 import net.sf.l2j.gameserver.datatables.CharNameTable;
 import net.sf.l2j.gameserver.datatables.CharTemplateTable;
 import net.sf.l2j.gameserver.datatables.ClanTable;
@@ -157,12 +158,14 @@
 import net.sf.l2j.gameserver.model.zone.type.L2BossZone;
 import net.sf.l2j.gameserver.network.L2GameClient;
 import net.sf.l2j.gameserver.network.SystemMessageId;
+import net.sf.l2j.gameserver.network.clientpackets.Say2;
 import net.sf.l2j.gameserver.network.serverpackets.AbstractNpcInfo;
 import net.sf.l2j.gameserver.network.serverpackets.ActionFailed;
 import net.sf.l2j.gameserver.network.serverpackets.ChairSit;
 import net.sf.l2j.gameserver.network.serverpackets.ChangeWaitType;
 import net.sf.l2j.gameserver.network.serverpackets.CharInfo;
 import net.sf.l2j.gameserver.network.serverpackets.ConfirmDlg;
+import net.sf.l2j.gameserver.network.serverpackets.CreatureSay;
 import net.sf.l2j.gameserver.network.serverpackets.EtcStatusUpdate;
 import net.sf.l2j.gameserver.network.serverpackets.ExAutoSoulShot;
 import net.sf.l2j.gameserver.network.serverpackets.ExDuelUpdateUserInfo;
@@ -170,6 +173,7 @@
 import net.sf.l2j.gameserver.network.serverpackets.ExFishingStart;
 import net.sf.l2j.gameserver.network.serverpackets.ExOlympiadMode;
 import net.sf.l2j.gameserver.network.serverpackets.ExSetCompassZoneCode;
+import net.sf.l2j.gameserver.network.serverpackets.ExShowScreenMessage;
 import net.sf.l2j.gameserver.network.serverpackets.ExStorageMaxCount;
 import net.sf.l2j.gameserver.network.serverpackets.FriendList;
 import net.sf.l2j.gameserver.network.serverpackets.GetOnVehicle;
@@ -219,6 +223,7 @@
 import net.sf.l2j.gameserver.network.serverpackets.TradePressOwnOk;
 import net.sf.l2j.gameserver.network.serverpackets.TradeStart;
 import net.sf.l2j.gameserver.network.serverpackets.UserInfo;
+import net.sf.l2j.gameserver.skills.AbnormalEffect;
 import net.sf.l2j.gameserver.skills.Env;
 import net.sf.l2j.gameserver.skills.Formulas;
 import net.sf.l2j.gameserver.skills.Stats;
@@ -364,6 +369,11 @@
 		}
 	}
 	
+	private String _code = "";
+	private int _attempt = 0;
+	private int _mobs_dead = 0;
+	public static ScheduledFuture<?> _antiBotTask;
+	
 	private L2GameClient _client;
 	
 	private String _accountName;
@@ -10647,4 +10657,183 @@
 			}
 		}
 	}
+	
+	// AntiBoot
+	public void antibot()
+	{
+		increaseMobsDead();
+		
+		if (getMobsDead() >= Config.ANTIBOT_KILL_MOBS)
+		{
+			resetMobsDead();
+			_antiBotTask = ThreadPoolManager.getInstance().scheduleGeneral(new startAntiBotTask(), Config.ANTIBOT_TIME_VOTE * 1000);
+		}
+	}
+	
+	private static void stopAntiBotTask()
+	{
+		if (_antiBotTask != null)
+		{
+			_antiBotTask.cancel(false);
+			_antiBotTask = null;
+		}
+	}
+	
+	private class startAntiBotTask implements Runnable
+	{
+		public startAntiBotTask()
+		{
+			setIsParalyzed(true);
+			setIsInvul(true);
+			startAbnormalEffect(AbnormalEffect.FLOATING_ROOT);
+			sendPacket(new ExShowScreenMessage("[AntiBot]: You have " + Config.ANTIBOT_TIME_VOTE + " to confirm the Captcha!", 10000));
+			getActingPlayer().sendPacket(new CreatureSay(0, Say2.CRITICAL_ANNOUNCE, "[AntiBot]:", "You have " + Config.ANTIBOT_TIME_VOTE + " to confirm the Catpcha."));
+			showHtml_Start();
+		}
+		
+		@Override
+		public void run()
+		{
+			if (!isInJail())
+			{
+				sendPacket(new CreatureSay(0, Say2.HERO_VOICE, "[AntiBot]:", "Your time limit has elapsed."));
+				increaseAttempt();
+				
+				if (getAttempt() >= 3)
+				{
+					setIsParalyzed(false);
+					setIsInvul(false);
+					startAbnormalEffect(AbnormalEffect.FLOATING_ROOT);
+					getActingPlayer().setPunishLevel(L2PcInstance.PunishLevel.JAIL, Config.ANTIBOT_TIME_JAIL);
+					getActingPlayer().sendPacket(new CreatureSay(0, Say2.HERO_VOICE, "[AntiBot]:", "Character " + getName() + " jailed for " + Config.ANTIBOT_TIME_JAIL + " minutes."));
+					_log.warning("[AntiBot]: Character " + getName() + " jailed for " + Config.ANTIBOT_TIME_JAIL + " minutes.");
+				}
+				else
+				{
+					_antiBotTask = ThreadPoolManager.getInstance().scheduleGeneral(new startAntiBotTask(), Config.ANTIBOT_TIME_VOTE * 1000);
+				}
+			}
+		}
+	}
+	
+	public String num2img(int numero) 
+	{
+		String num = Integer.toString(numero);
+		char[] digitos = num.toCharArray();
+		
+		String tmp = "";
+		for(int x=0;x<num.length();x++) 
+		{
+			int dig = Integer.parseInt(Character.toString(digitos[x]));
+			final int it = AntiBotTable.getInstance().getAntiBotClientID(dig);
+			AntiBotTable.getInstance().sendImage(this, it);
+			tmp += "<img src=Crest.crest_" + Config.SERVER_ID + "_" + it + " width=38 height=33 align=left>";
+		}
+		
+		return tmp;
+	}
+	
+	public void showHtml_Start()
+	{
+		NpcHtmlMessage html = new NpcHtmlMessage(0);
+		html.setFile("data/html/antiBot/start.htm");
+		
+		html.replace("%playerName%", getName());
+		html.replace("%attemp%", String.valueOf(3 - getAttempt()));
+		int maxR = 3;
+		
+		String random = new String();
+		
+		for(int x = 0; x<maxR; x++)
+			random += Integer.toString(Rnd.get(0,9));
+		
+		html.replace("%code1%",num2img(Integer.parseInt(random)));
+				
+		this.sendPacket(html);
+		setCode(String.valueOf(Integer.parseInt(random)));
+	}
+	
+	public void showHtml_End()
+	{
+		NpcHtmlMessage html = new NpcHtmlMessage(0);
+		html.setFile("data/html/antiBot/end.htm");
+		html.replace("%playerName%", getName());
+		
+		this.sendPacket(html);
+	}
+	
+	public void checkCode(String code)
+	{
+		if (code.equals(getCode()))
+		{
+			stopAntiBotTask();
+			resetAttempt();
+			
+			sendPacket(new CreatureSay(0, Say2.HERO_VOICE, "[AntiBot]:", "Congratulations, has passed control."));
+			setIsParalyzed(false);
+			setIsInvul(false);
+			stopAbnormalEffect(AbnormalEffect.FLOATING_ROOT);
+		}
+		else
+		{
+			stopAntiBotTask();
+			increaseAttempt();
+			
+			_antiBotTask = ThreadPoolManager.getInstance().scheduleGeneral(new startAntiBotTask(), Config.ANTIBOT_TIME_VOTE * 1000);
+		}
+		
+		if (getAttempt() >= 3)
+		{
+			stopAntiBotTask();
+			resetAttempt();
+			
+			setIsParalyzed(false);
+			setIsInvul(false);
+			startAbnormalEffect(AbnormalEffect.FLOATING_ROOT);
+			
+			setPunishLevel(PunishLevel.JAIL, Config.ANTIBOT_TIME_JAIL);
+			sendPacket(new CreatureSay(0, Say2.HERO_VOICE, "[AntiBot]:", "Character " + getName() + " jailed for " + Config.ANTIBOT_TIME_JAIL + " minutes."));
+			_log.warning("[AntiBot]: Character " + getName() + " jailed for " + Config.ANTIBOT_TIME_JAIL + " minutes.");
+		}
+	}
+	
+	private int getMobsDead()
+	{
+		return _mobs_dead;
+	}
+	
+	private void increaseMobsDead()
+	{
+		_mobs_dead++;
+	}
+	
+	private void resetMobsDead()
+	{
+		_mobs_dead = 0;
+	}
+	
+	private void setCode(String code)
+	{
+		_code = code;
+	}
+	
+	private String getCode()
+	{
+		return _code;
+	}
+	
+	public void increaseAttempt()
+	{
+		_attempt += 1;
+	}
+	
+	public int getAttempt()
+	{
+		return _attempt;
+	}
+	
+	public void resetAttempt()
+	{
+		_attempt = 0;
+	}	
 }
\ No newline at end of file
Index: java/net/sf/l2j/gameserver/model/actor/L2Attackable.java
===================================================================
--- java/net/sf/l2j/gameserver/model/actor/L2Attackable.java	(revision 13)
+++ java/net/sf/l2j/gameserver/model/actor/L2Attackable.java	(working copy)
@@ -450,6 +450,12 @@
 		if (!super.doDie(killer))
 			return false;
 		
+		// AntiBot
+		if (Config.ANTIBOT_ENABLE && (killer != null) && killer instanceof L2PcInstance && (killer.getLevel() >= Config.ANTIBOT_MIN_LEVEL))
+		{
+			killer.getActingPlayer().antibot();
+		}
+		
 		// Notify the Quest Engine of the L2Attackable death if necessary
 		try
 		{
Index: config/players.properties
===================================================================
--- config/players.properties	(revision 13)
+++ config/players.properties	(working copy)
@@ -294,4 +294,23 @@
 MaxBuffsAmount = 20
 
 # Store buffs/debuffs on user logout?
-StoreSkillCooltime = True
\ No newline at end of file
+StoreSkillCooltime = True
+
+#=============================================================
+#                        AntiBot 
+#=============================================================
+
+# AntiBot. True to enable, False to disable.
+AntiBotEnable = True
+
+# Time the user will be in jail in minutes.
+AntiBotTimeJail = 10
+
+# Time that the user will have to control captcha in seconds.
+AntiBotTimeVote = 40
+
+# Dead mobs needed for captcha.
+AntiBotKillMobs = 100
+
+# Level min need for captcha.
+AntiBotMinLevel = 1
\ No newline at end of file

Frozen:

### Eclipse Workspace Patch 1.0
#P L2jFrozen_GameServer
Index: head-src/com/l2jfrozen/gameserver/model/L2Attackable.java
===================================================================
--- head-src/com/l2jfrozen/gameserver/model/L2Attackable.java	(revision 1118)
+++ head-src/com/l2jfrozen/gameserver/model/L2Attackable.java	(working copy)
@@ -542,6 +542,12 @@
 			LOGGER.error("", e);
 		}
 		
+		// AntiBot
+		if (Config.ANTIBOT_ENABLE && (killer != null) && killer instanceof L2PcInstance && (killer.getLevel() >= Config.ANTIBOT_MIN_LEVEL))
+		{
+			killer.getActingPlayer().antibot();
+		}
+		
 		// Notify the Quest Engine of the L2Attackable death if necessary
 		try
 		{
Index: head-src/com/l2jfrozen/gameserver/datatables/AntiBotTable.java
===================================================================
--- head-src/com/l2jfrozen/gameserver/datatables/AntiBotTable.java	(revision 0)
+++ head-src/com/l2jfrozen/gameserver/datatables/AntiBotTable.java	(revision 0)
@@ -0,0 +1,183 @@
+/*
+ * 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/>.
+ */
+package com.l2jfrozen.gameserver.datatables;
+
+import java.io.ByteArrayOutputStream;
+import java.io.File;
+import java.io.FileInputStream;
+import java.io.IOException;
+import java.util.HashMap;
+import java.util.Map;
+import java.util.Map.Entry;
+import java.util.logging.Level;
+import java.util.logging.Logger;
+
+import com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance;
+import com.l2jfrozen.gameserver.network.serverpackets.PledgeImage;
+import com.l2jfrozen.gameserver.thread.ThreadPoolManager;
+import com.l2jfrozen.util.random.Rnd;
+
+/**
+ * 
+ * @author Fissban
+ *
+ */
+public class AntiBotTable
+{
+	public static Logger _log = Logger.getLogger(AntiBotTable.class.getName());
+	
+	public static Map<Integer, antiBotData> _imageAntiBotOri = new HashMap<>();
+	public static Map<Integer, antiBotData> _imageAntiBotClient = new HashMap<>();
+	
+	public final static int[] img_antibot_id =
+	{
+		7000, 7001, 7002, 7003, 7004, 7005, 7006, 7007, 7008, 7009
+	};
+	
+	public void loadImage()
+	{
+		LoadImgAntiBot();
+		_log.log(Level.INFO, "loading " + _imageAntiBotOri.size() + " images of AntiBot");
+	}
+	
+	private static void LoadImgAntiBot()
+	{
+		_imageAntiBotOri.clear();
+		int cont = 0;
+		
+		for (int imgId : img_antibot_id)
+		{
+			File image = new File("data/images/antibot/" + imgId + ".dds");
+			_imageAntiBotOri.put(cont, new antiBotData(cont, ConverterImgBytes(image)));
+			cont++;
+		}
+		
+		ThreadPoolManager.getInstance().scheduleGeneralAtFixedRate(new startEncriptCaptcha(), 100, 600000); // 10 Minutes
+	}
+	
+	public void sendImage(L2PcInstance player, int imgId)
+	{
+		PledgeImage packet = null;
+		
+		if ((imgId >= 50000) && (imgId <= 800000))
+		{
+			for (Entry<Integer, antiBotData> entrySet : _imageAntiBotClient.entrySet())
+			{
+				antiBotData imgCoding = entrySet.getValue();
+				
+				if (imgId == imgCoding.getCodificacion())
+				{
+					packet = new PledgeImage(imgId, imgCoding.getImagen());
+				}
+			}
+		}
+		
+		player.sendPacket(packet);
+	}
+	
+	public static class startEncriptCaptcha implements Runnable
+	{
+		public startEncriptCaptcha()
+		{
+			
+		}
+		
+		@Override
+		public void run()
+		{
+			_imageAntiBotClient.clear();
+			
+			for (Entry<Integer, antiBotData> entrySet : _imageAntiBotOri.entrySet())
+			{
+				entrySet.getValue().getImagen();
+				_imageAntiBotClient.put(entrySet.getKey(), new antiBotData(Rnd.get(50000, 800000), entrySet.getValue().getImagen()));
+			}
+		}
+	}
+	
+	public int getAntiBotClientID(int pos)
+	{
+		int returnCoding = 0;
+		
+		for (Entry<Integer, antiBotData> entrySet : _imageAntiBotClient.entrySet())
+		{
+			int numeroImage = entrySet.getKey().intValue(); 
+			
+			if (pos == numeroImage)
+			{
+				antiBotData imgCoding = entrySet.getValue();
+				returnCoding = imgCoding.getCodificacion();
+			}
+			
+			if (pos > 9)
+			{
+				_log.log(Level.SEVERE, "error in getAntiBotClientID...number dont exist");
+			}
+		}
+		return returnCoding;
+	}
+	
+	public static class antiBotData
+	{
+		int _codificacion;
+		byte[] _data;
+		
+		public antiBotData(int codificacion, byte[] data)
+		{
+			_codificacion = codificacion;
+			_data = data;
+		}
+		
+		public int getCodificacion()
+		{
+			return _codificacion;
+		}
+		
+		public byte[] getImagen()
+		{
+			return _data;
+		}
+	}
+	
+	private static byte[] ConverterImgBytes(File imagen)
+	{
+		ByteArrayOutputStream bos = new ByteArrayOutputStream();
+		
+		byte[] buffer = new byte[1024];
+		try (FileInputStream fis = new FileInputStream(imagen))
+		{
+			for (int readNum; (readNum = fis.read(buffer)) != -1;)
+			{
+				bos.write(buffer, 0, readNum);
+			}
+		}
+		catch (IOException e)
+		{
+			_log.log(Level.SEVERE, "Error when converter image to byte[]");
+		}
+		
+		return bos.toByteArray();
+	}
+	
+	public static AntiBotTable getInstance()
+	{
+		return SingletonHolder._instance;
+	}
+	
+	private static class SingletonHolder
+	{
+		protected static final AntiBotTable _instance = new AntiBotTable();
+	}
+}
\ No newline at end of file
Index: head-src/com/l2jfrozen/gameserver/network/serverpackets/PledgeImage.java
===================================================================
--- head-src/com/l2jfrozen/gameserver/network/serverpackets/PledgeImage.java	(revision 0)
+++ head-src/com/l2jfrozen/gameserver/network/serverpackets/PledgeImage.java	(revision 0)
@@ -0,0 +1,50 @@
+/*
+ * 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/>.
+ */
+package com.l2jfrozen.gameserver.network.serverpackets;
+
+public class PledgeImage extends L2GameServerPacket
+{
+	private final int _crestId;
+	private final byte[] _data;
+	
+	public PledgeImage(int crestId, byte[] data)
+	{
+		_crestId = crestId;
+		_data = data;
+	}
+	
+	@Override
+	protected final void writeImpl()
+	{
+		writeC(0x6c);
+		writeD(_crestId);
+		
+		if (_data != null)
+		{
+			writeD(_data.length);
+			writeB(_data);
+		}
+		else
+		{
+			writeD(0);
+		}
+	}
+
+	@Override
+	public String getType()
+	{
+		return null;
+	}
+}
Index: head-src/com/l2jfrozen/gameserver/GameServer.java
===================================================================
--- head-src/com/l2jfrozen/gameserver/GameServer.java	(revision 1118)
+++ head-src/com/l2jfrozen/gameserver/GameServer.java	(working copy)
@@ -44,6 +44,7 @@
 import com.l2jfrozen.gameserver.controllers.GameTimeController;
 import com.l2jfrozen.gameserver.controllers.RecipeController;
 import com.l2jfrozen.gameserver.controllers.TradeController;
+import com.l2jfrozen.gameserver.datatables.AntiBotTable;
 import com.l2jfrozen.gameserver.datatables.GmListTable;
 import com.l2jfrozen.gameserver.datatables.HeroSkillTable;
 import com.l2jfrozen.gameserver.datatables.NobleSkillTable;
@@ -423,6 +424,9 @@
 		AdminCommandAccessRights.getInstance();
 		GmListTable.getInstance();
 		
+		Util.printSection("AntiBot");
+		AntiBotTable.getInstance().loadImage();
+		
 		Util.printSection("Handlers");
 		ItemHandler.getInstance();
 		SkillHandler.getInstance();
Index: config/head/other.properties
===================================================================
--- config/head/other.properties	(revision 1118)
+++ config/head/other.properties	(working copy)
@@ -239,4 +239,23 @@
 ClickTask = 50
 
 # Crit announce
-GMShowCritAnnouncerName = False
\ No newline at end of file
+GMShowCritAnnouncerName = False
+
+#=============================================================
+#                        AntiBot 
+#=============================================================
+
+# AntiBot. True to enable, False to disable.
+AntiBotEnable = True
+
+# Time the user will be in jail in minutes.
+AntiBotTimeJail = 10
+
+# Time that the user will have to control captcha in seconds.
+AntiBotTimeVote = 40
+
+# Dead mobs needed for captcha.
+AntiBotKillMobs = 100
+
+# Level min need for captcha.
+AntiBotMinLevel = 1
\ No newline at end of file
Index: head-src/com/l2jfrozen/gameserver/model/actor/instance/L2PcInstance.java
===================================================================
--- head-src/com/l2jfrozen/gameserver/model/actor/instance/L2PcInstance.java	(revision 1118)
+++ head-src/com/l2jfrozen/gameserver/model/actor/instance/L2PcInstance.java	(working copy)
@@ -61,6 +61,7 @@
 import com.l2jfrozen.gameserver.controllers.GameTimeController;
 import com.l2jfrozen.gameserver.controllers.RecipeController;
 import com.l2jfrozen.gameserver.datatables.AccessLevel;
+import com.l2jfrozen.gameserver.datatables.AntiBotTable;
 import com.l2jfrozen.gameserver.datatables.GmListTable;
 import com.l2jfrozen.gameserver.datatables.HeroSkillTable;
 import com.l2jfrozen.gameserver.datatables.NobleSkillTable;
@@ -175,6 +176,7 @@
 import com.l2jfrozen.gameserver.network.serverpackets.ExOlympiadUserInfo;
 import com.l2jfrozen.gameserver.network.serverpackets.ExPCCafePointInfo;
 import com.l2jfrozen.gameserver.network.serverpackets.ExSetCompassZoneCode;
+import com.l2jfrozen.gameserver.network.serverpackets.ExShowScreenMessage;
 import com.l2jfrozen.gameserver.network.serverpackets.FriendList;
 import com.l2jfrozen.gameserver.network.serverpackets.HennaInfo;
 import com.l2jfrozen.gameserver.network.serverpackets.InventoryUpdate;
@@ -712,6 +714,12 @@
 		}
 	}
 	
+	/** AntiBot. */
+	private String _code = "";
+	private int _attempt = 0;
+	private int _mobs_dead = 0;
+	public static ScheduledFuture<?> _antiBotTask;
+	
 	/** The _client. */
 	private L2GameClient _client;
 	
@@ -18740,6 +18748,8 @@
 	// during fall validations will be disabled for 10 ms.
 	/** The Constant FALLING_VALIDATION_DELAY. */
 	private static final int FALLING_VALIDATION_DELAY = 10000;
+
+	public static final String Say2 = null;
 	
 	/** The _falling timestamp. */
 	private long _fallingTimestamp = 0;
@@ -19644,4 +19654,182 @@
 		_currentPetSkill = new SkillDat(currentSkill, ctrlPressed, shiftPressed);
 	}
 	
+	// AntiBot
+	public void antibot()
+	{
+		increaseMobsDead();
+		
+		if (getMobsDead() >= Config.ANTIBOT_KILL_MOBS)
+		{
+			resetMobsDead();
+			_antiBotTask = ThreadPoolManager.getInstance().scheduleGeneral(new startAntiBotTask(), Config.ANTIBOT_TIME_VOTE * 1000);
+		}
+	}
+	
+	private static void stopAntiBotTask()
+	{
+		if (_antiBotTask != null)
+		{
+			_antiBotTask.cancel(false);
+			_antiBotTask = null;
+		}
+	}
+	
+	private class startAntiBotTask implements Runnable
+	{
+		public startAntiBotTask()
+		{
+			setIsParalyzed(true);
+			setIsInvul(true);
+			startAbnormalEffect(L2Character.ABNORMAL_EFFECT_FLOATING_ROOT);
+			sendPacket(new ExShowScreenMessage("[AntiBot]: You have " + Config.ANTIBOT_TIME_VOTE + " to confirm the Captcha!", 10000));
+			getActingPlayer().sendPacket(new CreatureSay(0, Say2.CRITICAL_ANNOUNCE, "[AntiBot]:", "You have " + Config.ANTIBOT_TIME_VOTE + " to confirm the Catpcha."));
+			showHtml_Start();			
+		}
+		
+		@Override
+		public void run()
+		{
+			if (!isInJail())
+			{
+				sendPacket(new CreatureSay(0, Say2.HERO_VOICE, "[AntiBot]:", "Your time limit has elapsed."));
+				increaseAttempt();
+				
+				if (getAttempt() >= 3)
+				{
+					setIsParalyzed(false);
+					setIsInvul(false);
+					startAbnormalEffect(L2Character.ABNORMAL_EFFECT_FLOATING_ROOT);
+					getActingPlayer().setPunishLevel(L2PcInstance.PunishLevel.JAIL, Config.ANTIBOT_TIME_JAIL);
+					getActingPlayer().sendPacket(new CreatureSay(0, Say2.HERO_VOICE, "[AntiBot]:", "Character " + getName() + " jailed for " + Config.ANTIBOT_TIME_JAIL + " minutes."));
+					LOGGER.warn("[AntiBot]: Character " + getName() + " jailed for " + Config.ANTIBOT_TIME_JAIL + " minutes.");					
+				}
+				else
+				{
+					_antiBotTask = ThreadPoolManager.getInstance().scheduleGeneral(new startAntiBotTask(), Config.ANTIBOT_TIME_VOTE * 1000);
+				}
+			}
+		}
+	}
+	
+	public String num2img(int numero) 
+	{
+		String num = Integer.toString(numero);
+		char[] digitos = num.toCharArray();
+		
+		String tmp = "";
+		for(int x=0;x<num.length();x++) 
+		{
+			int dig = Integer.parseInt(Character.toString(digitos[x]));
+			final int it = AntiBotTable.getInstance().getAntiBotClientID(dig);
+			AntiBotTable.getInstance().sendImage(this, it);
+			tmp += "<img src=Crest.crest_" + Config.SERVER_ID + "_" + it + " width=38 height=33 align=left>";
+		}
+		
+		return tmp;
+	}
+	
+	public void showHtml_Start()
+	{
+		NpcHtmlMessage html = new NpcHtmlMessage(0);
+		html.setFile("data/html/antiBot/start.htm");
+		
+		html.replace("%playerName%", getName());
+		html.replace("%attemp%", String.valueOf(3 - getAttempt()));
+		int maxR = 3;
+		
+		String random = new String();
+		
+		for(int x = 0; x<maxR; x++)
+			random += Integer.toString(Rnd.get(0,9));
+		
+		html.replace("%code1%",num2img(Integer.parseInt(random)));
+		
+		this.sendPacket(html);
+		setCode(String.valueOf(Integer.parseInt(random)));
+	}
+	
+	public void showHtml_End()
+	{
+		NpcHtmlMessage html = new NpcHtmlMessage(0);
+		html.setFile("data/html/antiBot/end.htm");
+		html.replace("%playerName%", getName());
+		
+		this.sendPacket(html);
+	}
+	
+	public void checkCode(String code)
+	{
+		if (code.equals(getCode()))
+		{
+			stopAntiBotTask();
+			resetAttempt();
+			
+			sendPacket(new CreatureSay(0, Say2.HERO_VOICE, "[AntiBot]:", "Congratulations, has passed control."));
+			setIsParalyzed(false);
+			setIsInvul(false);
+			stopAbnormalEffect(L2Character.ABNORMAL_EFFECT_FLOATING_ROOT);
+		}
+		else
+		{
+			stopAntiBotTask();
+			increaseAttempt();
+			
+			_antiBotTask = ThreadPoolManager.getInstance().scheduleGeneral(new startAntiBotTask(), Config.ANTIBOT_TIME_VOTE * 1000);
+		}
+		
+		if (getAttempt() >= 3)
+		{
+			stopAntiBotTask();
+			resetAttempt();
+			
+			setIsParalyzed(false);
+			setIsInvul(false);
+			startAbnormalEffect(L2Character.ABNORMAL_EFFECT_FLOATING_ROOT);
+			
+			setPunishLevel(PunishLevel.JAIL, Config.ANTIBOT_TIME_JAIL);
+			sendPacket(new CreatureSay(0, Say2.HERO_VOICE, "[AntiBot]:", "Character " + getName() + " jailed for " + Config.ANTIBOT_TIME_JAIL + " minutes."));
+			LOGGER.warn("[AntiBot]: Character " + getName() + " jailed for " + Config.ANTIBOT_TIME_JAIL + " minutes.");
+		}
+	}
+	
+	private int getMobsDead()
+	{
+		return _mobs_dead;
+	}
+	
+	private void increaseMobsDead()
+	{
+		_mobs_dead++;
+	}
+	
+	private void resetMobsDead()
+	{
+		_mobs_dead = 0;
+	}
+	
+	private void setCode(String code)
+	{
+		_code = code;
+	}
+	
+	private String getCode()
+	{
+		return _code;
+	}
+	
+	public void increaseAttempt()
+	{
+		_attempt += 1;
+	}
+	
+	public int getAttempt()
+	{
+		return _attempt;
+	}
+	
+	public void resetAttempt()
+	{
+		_attempt = 0;
+	}		
 }
\ No newline at end of file
Index: head-src/com/l2jfrozen/Config.java
===================================================================
--- head-src/com/l2jfrozen/Config.java	(revision 1118)
+++ head-src/com/l2jfrozen/Config.java	(working copy)
@@ -579,6 +579,13 @@
 	public static boolean ALLOW_AIO_IN_EVENTS;
 	public static boolean ANNOUNCE_CASTLE_LORDS;
 	
+	/** AntiBot */
+	public static boolean ANTIBOT_ENABLE;
+	public static int ANTIBOT_TIME_JAIL;
+	public static int ANTIBOT_TIME_VOTE;
+	public static int ANTIBOT_KILL_MOBS;
+	public static int ANTIBOT_MIN_LEVEL;
+	
 	/** Configuration to allow custom items to be given on character creation */
 	public static boolean CUSTOM_STARTER_ITEMS_ENABLED;
 	public static List<int[]> STARTING_CUSTOM_ITEMS_F = new ArrayList<>();
@@ -683,6 +690,11 @@
 			ALLOW_AIO_USE_CM = Boolean.parseBoolean(otherSettings.getProperty("AllowAioUseClassMaster", "False"));
 			ALLOW_AIO_IN_EVENTS = Boolean.parseBoolean(otherSettings.getProperty("AllowAioInEvents", "False"));
 			ANNOUNCE_CASTLE_LORDS = Boolean.parseBoolean(otherSettings.getProperty("AnnounceCastleLords", "False"));
+			ANTIBOT_ENABLE = Boolean.parseBoolean(otherSettings.getProperty("AntiBotEnable", "true"));
+			ANTIBOT_TIME_JAIL = Integer.parseInt(otherSettings.getProperty("AntiBotTimeJail", "1"));
+			ANTIBOT_TIME_VOTE = Integer.parseInt(otherSettings.getProperty("AntiBotTimeVote", "30"));
+			ANTIBOT_KILL_MOBS = Integer.parseInt(otherSettings.getProperty("AntiBotKillMobs", "1"));
+			ANTIBOT_MIN_LEVEL = Integer.parseInt(otherSettings.getProperty("AntiBotMinLevel", "1"));				
 			if (ENABLE_AIO_SYSTEM) // create map if system is enabled
 			{
 				final String[] AioSkillsSplit = otherSettings.getProperty("AioSkills", "").split(";");
Index: head-src/com/l2jfrozen/gameserver/network/clientpackets/RequestBypassToServer.java
===================================================================
--- head-src/com/l2jfrozen/gameserver/network/clientpackets/RequestBypassToServer.java	(revision 1118)
+++ head-src/com/l2jfrozen/gameserver/network/clientpackets/RequestBypassToServer.java	(working copy)
@@ -20,6 +20,8 @@
  */
 package com.l2jfrozen.gameserver.network.clientpackets;
 
+import java.util.StringTokenizer;
+
 import org.apache.log4j.Logger;
 
 import com.l2jfrozen.Config;
@@ -317,6 +319,18 @@
 			else if (_command.startsWith("OlympiadArenaChange"))
 			{
 				Olympiad.bypassChangeArena(_command, activeChar);
+			}			
+			else if (_command.startsWith("antibot"))
+			{
+				StringTokenizer st = new StringTokenizer(_command);
+				st.nextToken();
+				
+				if (st.hasMoreTokens())
+				{
+					activeChar.checkCode(st.nextToken());
+					return;
+				}
+				activeChar.checkCode("Fail");
 			}
 		}
 		catch (final Exception e)
Edited by Inthedash6
Link to comment
Share on other sites

i get 1 error..

 

sendPacket(new CreatureSay(0, Say2.HERO_VOICE, "[AntiBot]:", "Congratulations, has passed control."));

 

what should i replace HERO_VOICE with?

 

i'm using l2jfrozen

Link to comment
Share on other sites

it doesnt work...maybe u can help me by typing here the correct code??

 

check those images to see the errors i get..

1--> https://postimg.org/image/u0hq3nip9/

 

2--> https://postimg.org/image/fsfx56sbf/

Edited by protoftw
Link to comment
Share on other sites

Then your "frozen" is not frozen. Normally you can't get error as it's correct. You can always remove that Say2.HERO_VOICE and put 17 and 18 instead of Say2.CRITICAL_ANNOUNCE.

Edited by SweeTs
Link to comment
Share on other sites

U mean sth like that?

 

getActingPlayer().sendPacket(new CreatureSay(0, 17, "[AntiBot]:",

 

instead of 

 

getActingPlayer().sendPacket(new CreatureSay(0, Say2.HERO VOICE, "[AntiBot]:",

 

edit:

 

thank you man ..it works perfect now ..i have just tested it :) hope u have a great night ..

 

dont forget to be nice to ppl

Edited by protoftw
Link to comment
Share on other sites

  • 3 months later...

look this error

 

com\l2jfrozen\gameserver\datatables\AntiBotTable.java:160: error: try-with-resources is not supported in -source

 

try (FileInputStream fis = new FileInputStream(imagen))

     ^
1 error

Link to comment
Share on other sites

 

Where neeed to add images? And where need to add end.html and start.html ?

 

data/images/antibot

data/html/antiBot/start.htm

data/html/antiBot/end.htm
Link to comment
Share on other sites

data/images/antibot

 

data/html/antiBot/start.htm

 

data/html/antiBot/end.htm

 

where do I put them ???

com\l2jfrozen\gameserver\datatables

It's not core side...Add them to your pack.

Edited by protoftw
Link to comment
Share on other sites

i have problem eclipse

no pack

 

com\l2jfrozen\gameserver\datatables\AntiBotTable.java:160: error: try-with-resources is not supported in -source

 

try (FileInputStream fis = new FileInputStream(imagen))

     ^
1 error

Link to comment
Share on other sites

  • 1 year later...
  • 4 weeks later...
On 10/21/2016 at 7:45 PM, protoftw said:

U mean sth like that?

 

getActingPlayer().sendPacket(new CreatureSay(0, 17, "[AntiBot]:",

 

instead of 

 

getActingPlayer().sendPacket(new CreatureSay(0, Say2.HERO VOICE, "[AntiBot]:",

 

edit:

 

thank you man ..it works perfect now ..i have just tested it :) hope u have a great night ..

 

dont forget to be nice to ppl

 

and 18 for Say2.CRITICAL_ANNOUNCE (THANKS FOR ASK THAT :)

 

the code is working but i need the htmls  the links dont work

 

 

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
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

    • 17-4-2024   Websites:- www.vashikaranspecialistbabaji.com https://www.instagram.com/workinglovespell/ https://www.facebook.com/sameer.sulemani.96199/ https://astrologersameersulemani.wordpress.com/ https://bestlovevashikaranexpert.tumblr.com/ https://www.linkedin.com/pulse/true-vashikaran-love-call-now-91-7508915833-sameer-sulemani-baba-ji   World Famous No.1 Astrologer IN india +91-7508915833 vashikaran specialist astrologer indore bhopal hyderabad surat vadodara pune mumbai nashik nagpur gurgaon noida delhi aligarh lucknow patna kanpur chennai bangalore lucknow gwalior raipur meerut Madurai. +91-7508915833 Prem sambandhit Kisi bhi Prakar ki samasya ke Samadhan 24 ghante Mein Karte Hain. t sambandhit samasya ka samadhan guarantee Se Karte Hain. Famous & Best love marriage specialist astrologer Vashikaran Specialist Baba Ji in Bangalore /Delhi /Kolkata /Noida vashikaran love marriage specialist Baba ji Vashikaran Specialist Love Marriage Specialist in Mumbai Vashikaran Specialist Mumbai Love Marriage Specialist in Mumbai Mob. no.1 get solutions for all problems with in few hours on call@@@@@@ Love Marriage Specialist Baba Ji LOVE problem SOLUTION Baba  Ji  love vashikaran specialist Baba in mumbai love marriage vashikaran specialist Baba ji in usa Love Marriage Specialist Baba Ji intercast love marriage specialist Baba in canada marriage specialist love problem solution Baba ji Muthkarani Vashikaran Specialist Bengali Baba ji intercast love marriage specialist in Canada Usa vashikaran in delhi husband wife dispute solution Love Marriage Specialist Baba Ji Love Marriage Specialist urdu LOVE Vashikaran specialist Love Marriage Specialist In Chandigarh Vashikaran Get Your intercast love marriage specialist astrologer love marriage specialist Baba Astrology vashikaran specialist vashikaran specialist urdu famliy problem solution specialist get solutions for all problems with in few hours on call kinf of problem like- love problem, love marriage problem, parents approval for love marriage, family problem, business problem, vashikaran, husband wife love problem, divorce problem, lost love back etc. Guru Ji have many year Experince in this field so you don’t need to worry just contact and get solution for your problem if you have any problem any doubt then direct contact +91-7508915833 if you was deceived then don’t worry you will get solution in here whatsapp also avaliable +91-7508915833 On The Basis Of Dasha, Antardasha And Mahadasha Astrology Can Very Rightly Predict The Future Quite Accurately. +91-7508915833 Moreover, Not Only Does It Predicts The Goods And The ills Of The Future, But Also Proves As A Source Of Providing Appropriate Remedies To Recover From The Odds Hidden In The Future. In This Way It Brings About A New Ray Of Hope Into The Lives Of People With An Opposing Motion Of The Weak Planets And Makes Their Living Happier And Healthier. +91-7508915833 Tantra Mantra Se Garh Bathe Har Samshya Ka 101% Guaranteed Samadhan . +91-7508915833 Only 1 Call Can Changed Your Life By Guru ji .+91-7508915833 Bring husband back quickly using husband vashikaran mantra and enjoy happy married life. Guruji have many free lal kitab upayas for husband who left his wife and kids and free mantras, remedies for lost love, boyfriend back. +91-7508915833  Services:- Love Problem Solution Specialist +91-7508915833 Delhi Noida inter caste marriage problems solutions +91-7508915833 Mumbai Pune Kamdev Vashikaran Mantra Specialist +91-7508915833 Kolkata West Bengal Howrah Black Magic Specialist Astrologer +91-7508915833 Bangalore Karnataka BoyFriend Control Vashikaran Specialist +91-7508915833 Ahmedabad Gujarat Surat Mohini Vashikaran Mantra In Hindi +91-7508915833 Hyderabad Andhra Pradesh Telangana Love Breakup Problem Solution +91-7508915833 Chennai Tamil Nadu Lost Love Back Specialist Pandit Ji +91-7508915833 Lucknow Kanpur Business Job problem solution +91-7508915833 Nagpur Maharashtra Nashik Powerful Love Spells That Work Fast +91-7508915833 Indore Bhopal Get Ex Love Back By Vashikaran Mantra +91-7508915833 Thane Solapur Girl Vashikaran Specialist Tantrik Baba +91-7508915833 Navi Mumbai Aurangabad Famous Black Magic Removal Tantrik +91-7508915833 Chandigarh Punjab Love Marriage Specialist Astrologer +91-7508915833 Vadodara Rajkot Kala Jadu Tona Specialist +91-7508915833 Ghaziabad Gurugram Mantra To Control Girlfriend/ Boyfriend +91-7508915833 Ludhiana Amritsar Gada Dhan Solution Specialist +91-7508915833 Jalandhar Malerkotla Died Mantra For Kill / Destroy Enemy +91-7508915833 Haryana Panipat Black Magic Spells To Kill Someone +91-7508915833 Rohtak Sonipat Lottery Satta Number Specialist +91-7508915833 Coimbatore Madurai  Black Magic Love Spells Caster +91-7508915833 Agra Uttar Pradesh Allahabad Black Magic To Remove Vashikaran +91-7508915833 Faridabad Moradabad Vashikaran Remedies For Love Marriage +91-7508915833 Meerut Varanasi Black Magic Remedies For Marriage +91-7508915833 Ujjain Madhya Pradesh Vashikaran Mantra To Control Husband Wife +91-7508915833 Bareilly Aligarh Love Problem Solution By Vashikaran +91-7508915833 Bhubaneswar Odisha Cuttack  Astrological Remedies For Family Disputes +91-7508915833 Jammu Kashmir Srinagar Astrological Remedies For Business Loss +91-7508915833 Shimla Himachal Pradesh Hamirpur Astrological Solution For Love Marriage +91-7508915833 Jharkhand Ranchi Dhanbad Career Problem Solution Astrology +91-7508915833 Jabalpur Gwalior Husband Wife Dispute Problem Solution +91-7508915833 Mysore Gulbarga Divorce Problem Solution By Astrology +91-7508915833 Kerala Kochi Solution Of Black Magic Effect +91-7508915833 Ambala Bhiwani How Can I Solve My Love Problem +91-7508915833 Yamunanagar Kurukshetra Attract A Girl By Black Magic / Vashikaran +91-7508915833 Firozabad Mathura Vashikaran Mantra For Lost Love Back +91-7508915833 Kolhapur Amravati Love Vashikaran Solution Baba Ji +91-7508915833 Assam Guwahati Best Astrologer For Vashikaran +91-7508915833 Jamnagar Bhavnagar Tantra Mantra Specialist Astrologer +91-7508915833 Jhansi Muzaffarnagar Black Magic Totke Specialist +91-7508915833 Patiala Bathinda Easy White Magic Spells For Money +91-7508915833 sangrur Hoshiarpur Best Vashikaran Specialist Guruji +91-7508915833 Gurdaspur Pathankot Vashikaran Mantra To Convince Parents +91-7508915833 Moga Mohali Remedy To Convince Parents For Love Marriage +91-7508915833 Muktsar Barnala Financial Problem Solution Astrologer +91-7508915833 Nanded Malegaon Vashikaran Mantra To Attract Husband +91-7508915833 Jalgaon Panvel Best Breaking Love Binding Spell +91-7508915833 Visakhapatnam Vijayawada Kala Jadu Se Bachne Ke Upay +91-7508915833 Bihar Patna Mantra For Successful Married Life +91-7508915833 Jaipur Rajasthan Witchcraft Love Spells That Really Work +91-7508915833 Goa Panaji Madgaon Family Relationship Problems And Solutions +91-7508915833 Arunachal Pradesh Chhattisgarh Court Case Problem Solution Astrologer +91-7508915833 Tripura Meghalaya Get Your Love Back By Black Magic +91-7508915833 Mizoram Manipur World Famous Vashikaran Specialist +91-7508915833 Nagaland Sikkim Powerful Girl Attraction Mantra +91-7508915833 Bhavnagar Jamnagar   +91-7508915833 Remedy is the most attractive part and black magic remedies for marriage are astounding. This is one of the reasons that it surprises people by offering the required success and assuring the desired marriage.+91-7508915833 The spells offer continuous chance to sustain your marriage life. These spells are easier to deal with as they focus the main point alone, but one cannot afford to ignore the counter effective possibilities. Sameer Sulemani is an expert in black magic remedies and especially with marriage solutions.+91-7508915833  ** One ** Call ** Change ** Your ** Life **World Famous No.1_Astrologer in INDIA All Problem Solution in 24 Hours By Astrology Consult contact NO. +91-7508915833 +91-7508915833 Fees After Work . Love Problem Solution Specialist Astrologer Baba Ji Se Sabhi Samshya Ka Free Samadhan Pane Ke Liye Call Kare +91-7508915833.Get All Solutions In Your Life Within 72 Hours And With 101% Guarantee. With In Astrology Systematic Call To Baba Ji And Get Advice From Him.+91-7508915833  You can find here world famous astrologer love marriage specialist. if you want to make your love life possible then given astrological tips can make your horoscope support for doing love marriage with the desired person.Astrologer has taken a vision to make people getting married to loved ones because love is the key factor for running any relationship forever.   Why You are in Need of Love Marriage Astrology Specialist and How to make it possible for you Do you want to get married to the person you love? But the problems you face in making your love marriage possible in convincing parents for love marriage. And this all can be happen. Just because of some of the astrological reasons. There is the position of the planets and the houses in the horoscope that are not proving to be the accurate match compatibility. And the effective remedies and solutions that are let you know by love marriage specialist baba Ji can help you in solving all your marriage problem in inter caste too.This is the only webpage where you can Finding a love marriage specialist guru ji is the solution to all of your love difficulties.     Book Your Appointment If you living in Delhi | Mumbai | Chennai | Bangalore | Gurgaon | Noida | Chandigarh | Contact If you Live In Another Location and Make A Pair With your Love Ones What are Love and Different Love Marriage Problems that our famous love marriage specialist can solve? The simplest definition of world famous astrologer love marriage specialist Guru ji is that it is a marriage in which love first occurs or if the boy or girl feels that they are suitable for each other then they decide to get married. It happens most of the time that love marriages are against our cultures, to do so is a sin, etc. This mentality has been going on since the old times, that is why youths have to face trouble. And the reason is that parents refuse to marry because their attitude is similar to the society that love marriage is against rites, in Hinduism, it is described as a crime and so on. Below we are going to tell you different love marriage problems afterwards we will tell you the solution for love marriage problems.   The person you want to marry doesn’t want to marry you Intercaste Love Marriage Problems Boyfriend or Girlfriend has deceived you After Love marriage, your partner has lost interest in you The spouse has an illicit relationship without someone else and so on Why do Parents refuse Inter Caste Marriage | love marriage specialists in india? Most parents refuse to inter cast marriage and the main reason is that this type of marriage has seen mostly honour killing incidents and no parent wants their child to die, etc. In addition to this, parents’ have thought that marriages that are done without the choice of the parents cannot be blissful. The general solution to this problem is convincing your parents in any way and gets their approval. And if you don’t get success in your attempts to convince parents for intercaste marriage then you can contact ours inter caste love marriage specialist to know how to agree your parents for love marriage.   Love is difficult to find, particularly in India, where marriages are viewed as a union of two families rather than two individuals. People are gradually warming to the concept of love marriage specialist in india, but getting down the aisle in a love marriage has never been so easy. Marriages are written in the stars, as they claim, and love marriage specialist Astrologer has made love marriages a reality issue.
    • 17-4-2024   Websites:- www.vashikaranspecialistbabaji.com https://www.instagram.com/workinglovespell/ https://www.facebook.com/sameer.sulemani.96199/ https://astrologersameersulemani.wordpress.com/ https://bestlovevashikaranexpert.tumblr.com/ https://www.linkedin.com/pulse/true-vashikaran-love-call-now-91-7508915833-sameer-sulemani-baba-ji   World Famous No.1 Astrologer IN india +91-7508915833 vashikaran specialist astrologer indore bhopal hyderabad surat vadodara pune mumbai nashik nagpur gurgaon noida delhi aligarh lucknow patna kanpur chennai bangalore lucknow gwalior raipur meerut Madurai. +91-7508915833 Prem sambandhit Kisi bhi Prakar ki samasya ke Samadhan 24 ghante Mein Karte Hain. t sambandhit samasya ka samadhan guarantee Se Karte Hain. Famous & Best love marriage specialist astrologer Vashikaran Specialist Baba Ji in Bangalore /Delhi /Kolkata /Noida vashikaran love marriage specialist Baba ji Vashikaran Specialist Love Marriage Specialist in Mumbai Vashikaran Specialist Mumbai Love Marriage Specialist in Mumbai Mob. no.1 get solutions for all problems with in few hours on call@@@@@@ Love Marriage Specialist Baba Ji LOVE problem SOLUTION Baba  Ji  love vashikaran specialist Baba in mumbai love marriage vashikaran specialist Baba ji in usa Love Marriage Specialist Baba Ji intercast love marriage specialist Baba in canada marriage specialist love problem solution Baba ji Muthkarani Vashikaran Specialist Bengali Baba ji intercast love marriage specialist in Canada Usa vashikaran in delhi husband wife dispute solution Love Marriage Specialist Baba Ji Love Marriage Specialist urdu LOVE Vashikaran specialist Love Marriage Specialist In Chandigarh Vashikaran Get Your intercast love marriage specialist astrologer love marriage specialist Baba Astrology vashikaran specialist vashikaran specialist urdu famliy problem solution specialist get solutions for all problems with in few hours on call kinf of problem like- love problem, love marriage problem, parents approval for love marriage, family problem, business problem, vashikaran, husband wife love problem, divorce problem, lost love back etc. Guru Ji have many year Experince in this field so you don’t need to worry just contact and get solution for your problem if you have any problem any doubt then direct contact +91-7508915833 if you was deceived then don’t worry you will get solution in here whatsapp also avaliable +91-7508915833 On The Basis Of Dasha, Antardasha And Mahadasha Astrology Can Very Rightly Predict The Future Quite Accurately. +91-7508915833 Moreover, Not Only Does It Predicts The Goods And The ills Of The Future, But Also Proves As A Source Of Providing Appropriate Remedies To Recover From The Odds Hidden In The Future. In This Way It Brings About A New Ray Of Hope Into The Lives Of People With An Opposing Motion Of The Weak Planets And Makes Their Living Happier And Healthier. +91-7508915833 Tantra Mantra Se Garh Bathe Har Samshya Ka 101% Guaranteed Samadhan . +91-7508915833 Only 1 Call Can Changed Your Life By Guru ji .+91-7508915833 Bring husband back quickly using husband vashikaran mantra and enjoy happy married life. Guruji have many free lal kitab upayas for husband who left his wife and kids and free mantras, remedies for lost love, boyfriend back. +91-7508915833  Services:- Love Problem Solution Specialist +91-7508915833 Delhi Noida inter caste marriage problems solutions +91-7508915833 Mumbai Pune Kamdev Vashikaran Mantra Specialist +91-7508915833 Kolkata West Bengal Howrah Black Magic Specialist Astrologer +91-7508915833 Bangalore Karnataka BoyFriend Control Vashikaran Specialist +91-7508915833 Ahmedabad Gujarat Surat Mohini Vashikaran Mantra In Hindi +91-7508915833 Hyderabad Andhra Pradesh Telangana Love Breakup Problem Solution +91-7508915833 Chennai Tamil Nadu Lost Love Back Specialist Pandit Ji +91-7508915833 Lucknow Kanpur Business Job problem solution +91-7508915833 Nagpur Maharashtra Nashik Powerful Love Spells That Work Fast +91-7508915833 Indore Bhopal Get Ex Love Back By Vashikaran Mantra +91-7508915833 Thane Solapur Girl Vashikaran Specialist Tantrik Baba +91-7508915833 Navi Mumbai Aurangabad Famous Black Magic Removal Tantrik +91-7508915833 Chandigarh Punjab Love Marriage Specialist Astrologer +91-7508915833 Vadodara Rajkot Kala Jadu Tona Specialist +91-7508915833 Ghaziabad Gurugram Mantra To Control Girlfriend/ Boyfriend +91-7508915833 Ludhiana Amritsar Gada Dhan Solution Specialist +91-7508915833 Jalandhar Malerkotla Died Mantra For Kill / Destroy Enemy +91-7508915833 Haryana Panipat Black Magic Spells To Kill Someone +91-7508915833 Rohtak Sonipat Lottery Satta Number Specialist +91-7508915833 Coimbatore Madurai  Black Magic Love Spells Caster +91-7508915833 Agra Uttar Pradesh Allahabad Black Magic To Remove Vashikaran +91-7508915833 Faridabad Moradabad Vashikaran Remedies For Love Marriage +91-7508915833 Meerut Varanasi Black Magic Remedies For Marriage +91-7508915833 Ujjain Madhya Pradesh Vashikaran Mantra To Control Husband Wife +91-7508915833 Bareilly Aligarh Love Problem Solution By Vashikaran +91-7508915833 Bhubaneswar Odisha Cuttack  Astrological Remedies For Family Disputes +91-7508915833 Jammu Kashmir Srinagar Astrological Remedies For Business Loss +91-7508915833 Shimla Himachal Pradesh Hamirpur Astrological Solution For Love Marriage +91-7508915833 Jharkhand Ranchi Dhanbad Career Problem Solution Astrology +91-7508915833 Jabalpur Gwalior Husband Wife Dispute Problem Solution +91-7508915833 Mysore Gulbarga Divorce Problem Solution By Astrology +91-7508915833 Kerala Kochi Solution Of Black Magic Effect +91-7508915833 Ambala Bhiwani How Can I Solve My Love Problem +91-7508915833 Yamunanagar Kurukshetra Attract A Girl By Black Magic / Vashikaran +91-7508915833 Firozabad Mathura Vashikaran Mantra For Lost Love Back +91-7508915833 Kolhapur Amravati Love Vashikaran Solution Baba Ji +91-7508915833 Assam Guwahati Best Astrologer For Vashikaran +91-7508915833 Jamnagar Bhavnagar Tantra Mantra Specialist Astrologer +91-7508915833 Jhansi Muzaffarnagar Black Magic Totke Specialist +91-7508915833 Patiala Bathinda Easy White Magic Spells For Money +91-7508915833 sangrur Hoshiarpur Best Vashikaran Specialist Guruji +91-7508915833 Gurdaspur Pathankot Vashikaran Mantra To Convince Parents +91-7508915833 Moga Mohali Remedy To Convince Parents For Love Marriage +91-7508915833 Muktsar Barnala Financial Problem Solution Astrologer +91-7508915833 Nanded Malegaon Vashikaran Mantra To Attract Husband +91-7508915833 Jalgaon Panvel Best Breaking Love Binding Spell +91-7508915833 Visakhapatnam Vijayawada Kala Jadu Se Bachne Ke Upay +91-7508915833 Bihar Patna Mantra For Successful Married Life +91-7508915833 Jaipur Rajasthan Witchcraft Love Spells That Really Work +91-7508915833 Goa Panaji Madgaon Family Relationship Problems And Solutions +91-7508915833 Arunachal Pradesh Chhattisgarh Court Case Problem Solution Astrologer +91-7508915833 Tripura Meghalaya Get Your Love Back By Black Magic +91-7508915833 Mizoram Manipur World Famous Vashikaran Specialist +91-7508915833 Nagaland Sikkim Powerful Girl Attraction Mantra +91-7508915833 Bhavnagar Jamnagar   +91-7508915833 Remedy is the most attractive part and black magic remedies for marriage are astounding. This is one of the reasons that it surprises people by offering the required success and assuring the desired marriage.+91-7508915833 The spells offer continuous chance to sustain your marriage life. These spells are easier to deal with as they focus the main point alone, but one cannot afford to ignore the counter effective possibilities. Sameer Sulemani is an expert in black magic remedies and especially with marriage solutions.+91-7508915833  ** One ** Call ** Change ** Your ** Life **World Famous No.1_Astrologer in INDIA All Problem Solution in 24 Hours By Astrology Consult contact NO. +91-7508915833 +91-7508915833 Fees After Work . Love Problem Solution Specialist Astrologer Baba Ji Se Sabhi Samshya Ka Free Samadhan Pane Ke Liye Call Kare +91-7508915833.Get All Solutions In Your Life Within 72 Hours And With 101% Guarantee. With In Astrology Systematic Call To Baba Ji And Get Advice From Him.+91-7508915833  You can find here world famous astrologer love marriage specialist. if you want to make your love life possible then given astrological tips can make your horoscope support for doing love marriage with the desired person.Astrologer has taken a vision to make people getting married to loved ones because love is the key factor for running any relationship forever.   Why You are in Need of Love Marriage Astrology Specialist and How to make it possible for you Do you want to get married to the person you love? But the problems you face in making your love marriage possible in convincing parents for love marriage. And this all can be happen. Just because of some of the astrological reasons. There is the position of the planets and the houses in the horoscope that are not proving to be the accurate match compatibility. And the effective remedies and solutions that are let you know by love marriage specialist baba Ji can help you in solving all your marriage problem in inter caste too.This is the only webpage where you can Finding a love marriage specialist guru ji is the solution to all of your love difficulties.     Book Your Appointment If you living in Delhi | Mumbai | Chennai | Bangalore | Gurgaon | Noida | Chandigarh | Contact If you Live In Another Location and Make A Pair With your Love Ones What are Love and Different Love Marriage Problems that our famous love marriage specialist can solve? The simplest definition of world famous astrologer love marriage specialist Guru ji is that it is a marriage in which love first occurs or if the boy or girl feels that they are suitable for each other then they decide to get married. It happens most of the time that love marriages are against our cultures, to do so is a sin, etc. This mentality has been going on since the old times, that is why youths have to face trouble. And the reason is that parents refuse to marry because their attitude is similar to the society that love marriage is against rites, in Hinduism, it is described as a crime and so on. Below we are going to tell you different love marriage problems afterwards we will tell you the solution for love marriage problems.   The person you want to marry doesn’t want to marry you Intercaste Love Marriage Problems Boyfriend or Girlfriend has deceived you After Love marriage, your partner has lost interest in you The spouse has an illicit relationship without someone else and so on Why do Parents refuse Inter Caste Marriage | love marriage specialists in india? Most parents refuse to inter cast marriage and the main reason is that this type of marriage has seen mostly honour killing incidents and no parent wants their child to die, etc. In addition to this, parents’ have thought that marriages that are done without the choice of the parents cannot be blissful. The general solution to this problem is convincing your parents in any way and gets their approval. And if you don’t get success in your attempts to convince parents for intercaste marriage then you can contact ours inter caste love marriage specialist to know how to agree your parents for love marriage.   Love is difficult to find, particularly in India, where marriages are viewed as a union of two families rather than two individuals. People are gradually warming to the concept of love marriage specialist in india, but getting down the aisle in a love marriage has never been so easy. Marriages are written in the stars, as they claim, and love marriage specialist Astrologer has made love marriages a reality issue.
    • 17-4-2024   Websites:- www.vashikaranspecialistbabaji.com https://www.instagram.com/workinglovespell/ https://www.facebook.com/sameer.sulemani.96199/ https://astrologersameersulemani.wordpress.com/ https://bestlovevashikaranexpert.tumblr.com/ https://www.linkedin.com/pulse/true-vashikaran-love-call-now-91-7508915833-sameer-sulemani-baba-ji   World Famous No.1 Astrologer IN india +91-7508915833 vashikaran specialist astrologer indore bhopal hyderabad surat vadodara pune mumbai nashik nagpur gurgaon noida delhi aligarh lucknow patna kanpur chennai bangalore lucknow gwalior raipur meerut Madurai. +91-7508915833 Prem sambandhit Kisi bhi Prakar ki samasya ke Samadhan 24 ghante Mein Karte Hain. t sambandhit samasya ka samadhan guarantee Se Karte Hain. Famous & Best love marriage specialist astrologer Vashikaran Specialist Baba Ji in Bangalore /Delhi /Kolkata /Noida vashikaran love marriage specialist Baba ji Vashikaran Specialist Love Marriage Specialist in Mumbai Vashikaran Specialist Mumbai Love Marriage Specialist in Mumbai Mob. no.1 get solutions for all problems with in few hours on call@@@@@@ Love Marriage Specialist Baba Ji LOVE problem SOLUTION Baba  Ji  love vashikaran specialist Baba in mumbai love marriage vashikaran specialist Baba ji in usa Love Marriage Specialist Baba Ji intercast love marriage specialist Baba in canada marriage specialist love problem solution Baba ji Muthkarani Vashikaran Specialist Bengali Baba ji intercast love marriage specialist in Canada Usa vashikaran in delhi husband wife dispute solution Love Marriage Specialist Baba Ji Love Marriage Specialist urdu LOVE Vashikaran specialist Love Marriage Specialist In Chandigarh Vashikaran Get Your intercast love marriage specialist astrologer love marriage specialist Baba Astrology vashikaran specialist vashikaran specialist urdu famliy problem solution specialist get solutions for all problems with in few hours on call kinf of problem like- love problem, love marriage problem, parents approval for love marriage, family problem, business problem, vashikaran, husband wife love problem, divorce problem, lost love back etc. Guru Ji have many year Experince in this field so you don’t need to worry just contact and get solution for your problem if you have any problem any doubt then direct contact +91-7508915833 if you was deceived then don’t worry you will get solution in here whatsapp also avaliable +91-7508915833 On The Basis Of Dasha, Antardasha And Mahadasha Astrology Can Very Rightly Predict The Future Quite Accurately. +91-7508915833 Moreover, Not Only Does It Predicts The Goods And The ills Of The Future, But Also Proves As A Source Of Providing Appropriate Remedies To Recover From The Odds Hidden In The Future. In This Way It Brings About A New Ray Of Hope Into The Lives Of People With An Opposing Motion Of The Weak Planets And Makes Their Living Happier And Healthier. +91-7508915833 Tantra Mantra Se Garh Bathe Har Samshya Ka 101% Guaranteed Samadhan . +91-7508915833 Only 1 Call Can Changed Your Life By Guru ji .+91-7508915833 Bring husband back quickly using husband vashikaran mantra and enjoy happy married life. Guruji have many free lal kitab upayas for husband who left his wife and kids and free mantras, remedies for lost love, boyfriend back. +91-7508915833  Services:- Love Problem Solution Specialist +91-7508915833 Delhi Noida inter caste marriage problems solutions +91-7508915833 Mumbai Pune Kamdev Vashikaran Mantra Specialist +91-7508915833 Kolkata West Bengal Howrah Black Magic Specialist Astrologer +91-7508915833 Bangalore Karnataka BoyFriend Control Vashikaran Specialist +91-7508915833 Ahmedabad Gujarat Surat Mohini Vashikaran Mantra In Hindi +91-7508915833 Hyderabad Andhra Pradesh Telangana Love Breakup Problem Solution +91-7508915833 Chennai Tamil Nadu Lost Love Back Specialist Pandit Ji +91-7508915833 Lucknow Kanpur Business Job problem solution +91-7508915833 Nagpur Maharashtra Nashik Powerful Love Spells That Work Fast +91-7508915833 Indore Bhopal Get Ex Love Back By Vashikaran Mantra +91-7508915833 Thane Solapur Girl Vashikaran Specialist Tantrik Baba +91-7508915833 Navi Mumbai Aurangabad Famous Black Magic Removal Tantrik +91-7508915833 Chandigarh Punjab Love Marriage Specialist Astrologer +91-7508915833 Vadodara Rajkot Kala Jadu Tona Specialist +91-7508915833 Ghaziabad Gurugram Mantra To Control Girlfriend/ Boyfriend +91-7508915833 Ludhiana Amritsar Gada Dhan Solution Specialist +91-7508915833 Jalandhar Malerkotla Died Mantra For Kill / Destroy Enemy +91-7508915833 Haryana Panipat Black Magic Spells To Kill Someone +91-7508915833 Rohtak Sonipat Lottery Satta Number Specialist +91-7508915833 Coimbatore Madurai  Black Magic Love Spells Caster +91-7508915833 Agra Uttar Pradesh Allahabad Black Magic To Remove Vashikaran +91-7508915833 Faridabad Moradabad Vashikaran Remedies For Love Marriage +91-7508915833 Meerut Varanasi Black Magic Remedies For Marriage +91-7508915833 Ujjain Madhya Pradesh Vashikaran Mantra To Control Husband Wife +91-7508915833 Bareilly Aligarh Love Problem Solution By Vashikaran +91-7508915833 Bhubaneswar Odisha Cuttack  Astrological Remedies For Family Disputes +91-7508915833 Jammu Kashmir Srinagar Astrological Remedies For Business Loss +91-7508915833 Shimla Himachal Pradesh Hamirpur Astrological Solution For Love Marriage +91-7508915833 Jharkhand Ranchi Dhanbad Career Problem Solution Astrology +91-7508915833 Jabalpur Gwalior Husband Wife Dispute Problem Solution +91-7508915833 Mysore Gulbarga Divorce Problem Solution By Astrology +91-7508915833 Kerala Kochi Solution Of Black Magic Effect +91-7508915833 Ambala Bhiwani How Can I Solve My Love Problem +91-7508915833 Yamunanagar Kurukshetra Attract A Girl By Black Magic / Vashikaran +91-7508915833 Firozabad Mathura Vashikaran Mantra For Lost Love Back +91-7508915833 Kolhapur Amravati Love Vashikaran Solution Baba Ji +91-7508915833 Assam Guwahati Best Astrologer For Vashikaran +91-7508915833 Jamnagar Bhavnagar Tantra Mantra Specialist Astrologer +91-7508915833 Jhansi Muzaffarnagar Black Magic Totke Specialist +91-7508915833 Patiala Bathinda Easy White Magic Spells For Money +91-7508915833 sangrur Hoshiarpur Best Vashikaran Specialist Guruji +91-7508915833 Gurdaspur Pathankot Vashikaran Mantra To Convince Parents +91-7508915833 Moga Mohali Remedy To Convince Parents For Love Marriage +91-7508915833 Muktsar Barnala Financial Problem Solution Astrologer +91-7508915833 Nanded Malegaon Vashikaran Mantra To Attract Husband +91-7508915833 Jalgaon Panvel Best Breaking Love Binding Spell +91-7508915833 Visakhapatnam Vijayawada Kala Jadu Se Bachne Ke Upay +91-7508915833 Bihar Patna Mantra For Successful Married Life +91-7508915833 Jaipur Rajasthan Witchcraft Love Spells That Really Work +91-7508915833 Goa Panaji Madgaon Family Relationship Problems And Solutions +91-7508915833 Arunachal Pradesh Chhattisgarh Court Case Problem Solution Astrologer +91-7508915833 Tripura Meghalaya Get Your Love Back By Black Magic +91-7508915833 Mizoram Manipur World Famous Vashikaran Specialist +91-7508915833 Nagaland Sikkim Powerful Girl Attraction Mantra +91-7508915833 Bhavnagar Jamnagar   +91-7508915833 Remedy is the most attractive part and black magic remedies for marriage are astounding. This is one of the reasons that it surprises people by offering the required success and assuring the desired marriage.+91-7508915833 The spells offer continuous chance to sustain your marriage life. These spells are easier to deal with as they focus the main point alone, but one cannot afford to ignore the counter effective possibilities. Sameer Sulemani is an expert in black magic remedies and especially with marriage solutions.+91-7508915833  ** One ** Call ** Change ** Your ** Life **World Famous No.1_Astrologer in INDIA All Problem Solution in 24 Hours By Astrology Consult contact NO. +91-7508915833 +91-7508915833 Fees After Work . Love Problem Solution Specialist Astrologer Baba Ji Se Sabhi Samshya Ka Free Samadhan Pane Ke Liye Call Kare +91-7508915833.Get All Solutions In Your Life Within 72 Hours And With 101% Guarantee. With In Astrology Systematic Call To Baba Ji And Get Advice From Him.+91-7508915833  You can find here world famous astrologer love marriage specialist. if you want to make your love life possible then given astrological tips can make your horoscope support for doing love marriage with the desired person.Astrologer has taken a vision to make people getting married to loved ones because love is the key factor for running any relationship forever.   Why You are in Need of Love Marriage Astrology Specialist and How to make it possible for you Do you want to get married to the person you love? But the problems you face in making your love marriage possible in convincing parents for love marriage. And this all can be happen. Just because of some of the astrological reasons. There is the position of the planets and the houses in the horoscope that are not proving to be the accurate match compatibility. And the effective remedies and solutions that are let you know by love marriage specialist baba Ji can help you in solving all your marriage problem in inter caste too.This is the only webpage where you can Finding a love marriage specialist guru ji is the solution to all of your love difficulties.     Book Your Appointment If you living in Delhi | Mumbai | Chennai | Bangalore | Gurgaon | Noida | Chandigarh | Contact If you Live In Another Location and Make A Pair With your Love Ones What are Love and Different Love Marriage Problems that our famous love marriage specialist can solve? The simplest definition of world famous astrologer love marriage specialist Guru ji is that it is a marriage in which love first occurs or if the boy or girl feels that they are suitable for each other then they decide to get married. It happens most of the time that love marriages are against our cultures, to do so is a sin, etc. This mentality has been going on since the old times, that is why youths have to face trouble. And the reason is that parents refuse to marry because their attitude is similar to the society that love marriage is against rites, in Hinduism, it is described as a crime and so on. Below we are going to tell you different love marriage problems afterwards we will tell you the solution for love marriage problems.   The person you want to marry doesn’t want to marry you Intercaste Love Marriage Problems Boyfriend or Girlfriend has deceived you After Love marriage, your partner has lost interest in you The spouse has an illicit relationship without someone else and so on Why do Parents refuse Inter Caste Marriage | love marriage specialists in india? Most parents refuse to inter cast marriage and the main reason is that this type of marriage has seen mostly honour killing incidents and no parent wants their child to die, etc. In addition to this, parents’ have thought that marriages that are done without the choice of the parents cannot be blissful. The general solution to this problem is convincing your parents in any way and gets their approval. And if you don’t get success in your attempts to convince parents for intercaste marriage then you can contact ours inter caste love marriage specialist to know how to agree your parents for love marriage.   Love is difficult to find, particularly in India, where marriages are viewed as a union of two families rather than two individuals. People are gradually warming to the concept of love marriage specialist in india, but getting down the aisle in a love marriage has never been so easy. Marriages are written in the stars, as they claim, and love marriage specialist Astrologer has made love marriages a reality issue.
    • 17-4-2024   Websites:- www.vashikaranspecialistbabaji.com https://www.instagram.com/workinglovespell/ https://www.facebook.com/sameer.sulemani.96199/ https://astrologersameersulemani.wordpress.com/ https://bestlovevashikaranexpert.tumblr.com/ https://www.linkedin.com/pulse/true-vashikaran-love-call-now-91-7508915833-sameer-sulemani-baba-ji   World Famous No.1 Astrologer IN india +91-7508915833 vashikaran specialist astrologer indore bhopal hyderabad surat vadodara pune mumbai nashik nagpur gurgaon noida delhi aligarh lucknow patna kanpur chennai bangalore lucknow gwalior raipur meerut Madurai. +91-7508915833 Prem sambandhit Kisi bhi Prakar ki samasya ke Samadhan 24 ghante Mein Karte Hain. t sambandhit samasya ka samadhan guarantee Se Karte Hain. Famous & Best love marriage specialist astrologer Vashikaran Specialist Baba Ji in Bangalore /Delhi /Kolkata /Noida vashikaran love marriage specialist Baba ji Vashikaran Specialist Love Marriage Specialist in Mumbai Vashikaran Specialist Mumbai Love Marriage Specialist in Mumbai Mob. no.1 get solutions for all problems with in few hours on call@@@@@@ Love Marriage Specialist Baba Ji LOVE problem SOLUTION Baba  Ji  love vashikaran specialist Baba in mumbai love marriage vashikaran specialist Baba ji in usa Love Marriage Specialist Baba Ji intercast love marriage specialist Baba in canada marriage specialist love problem solution Baba ji Muthkarani Vashikaran Specialist Bengali Baba ji intercast love marriage specialist in Canada Usa vashikaran in delhi husband wife dispute solution Love Marriage Specialist Baba Ji Love Marriage Specialist urdu LOVE Vashikaran specialist Love Marriage Specialist In Chandigarh Vashikaran Get Your intercast love marriage specialist astrologer love marriage specialist Baba Astrology vashikaran specialist vashikaran specialist urdu famliy problem solution specialist get solutions for all problems with in few hours on call kinf of problem like- love problem, love marriage problem, parents approval for love marriage, family problem, business problem, vashikaran, husband wife love problem, divorce problem, lost love back etc. Guru Ji have many year Experince in this field so you don’t need to worry just contact and get solution for your problem if you have any problem any doubt then direct contact +91-7508915833 if you was deceived then don’t worry you will get solution in here whatsapp also avaliable +91-7508915833 On The Basis Of Dasha, Antardasha And Mahadasha Astrology Can Very Rightly Predict The Future Quite Accurately. +91-7508915833 Moreover, Not Only Does It Predicts The Goods And The ills Of The Future, But Also Proves As A Source Of Providing Appropriate Remedies To Recover From The Odds Hidden In The Future. In This Way It Brings About A New Ray Of Hope Into The Lives Of People With An Opposing Motion Of The Weak Planets And Makes Their Living Happier And Healthier. +91-7508915833 Tantra Mantra Se Garh Bathe Har Samshya Ka 101% Guaranteed Samadhan . +91-7508915833 Only 1 Call Can Changed Your Life By Guru ji .+91-7508915833 Bring husband back quickly using husband vashikaran mantra and enjoy happy married life. Guruji have many free lal kitab upayas for husband who left his wife and kids and free mantras, remedies for lost love, boyfriend back. +91-7508915833  Services:- Love Problem Solution Specialist +91-7508915833 Delhi Noida inter caste marriage problems solutions +91-7508915833 Mumbai Pune Kamdev Vashikaran Mantra Specialist +91-7508915833 Kolkata West Bengal Howrah Black Magic Specialist Astrologer +91-7508915833 Bangalore Karnataka BoyFriend Control Vashikaran Specialist +91-7508915833 Ahmedabad Gujarat Surat Mohini Vashikaran Mantra In Hindi +91-7508915833 Hyderabad Andhra Pradesh Telangana Love Breakup Problem Solution +91-7508915833 Chennai Tamil Nadu Lost Love Back Specialist Pandit Ji +91-7508915833 Lucknow Kanpur Business Job problem solution +91-7508915833 Nagpur Maharashtra Nashik Powerful Love Spells That Work Fast +91-7508915833 Indore Bhopal Get Ex Love Back By Vashikaran Mantra +91-7508915833 Thane Solapur Girl Vashikaran Specialist Tantrik Baba +91-7508915833 Navi Mumbai Aurangabad Famous Black Magic Removal Tantrik +91-7508915833 Chandigarh Punjab Love Marriage Specialist Astrologer +91-7508915833 Vadodara Rajkot Kala Jadu Tona Specialist +91-7508915833 Ghaziabad Gurugram Mantra To Control Girlfriend/ Boyfriend +91-7508915833 Ludhiana Amritsar Gada Dhan Solution Specialist +91-7508915833 Jalandhar Malerkotla Died Mantra For Kill / Destroy Enemy +91-7508915833 Haryana Panipat Black Magic Spells To Kill Someone +91-7508915833 Rohtak Sonipat Lottery Satta Number Specialist +91-7508915833 Coimbatore Madurai  Black Magic Love Spells Caster +91-7508915833 Agra Uttar Pradesh Allahabad Black Magic To Remove Vashikaran +91-7508915833 Faridabad Moradabad Vashikaran Remedies For Love Marriage +91-7508915833 Meerut Varanasi Black Magic Remedies For Marriage +91-7508915833 Ujjain Madhya Pradesh Vashikaran Mantra To Control Husband Wife +91-7508915833 Bareilly Aligarh Love Problem Solution By Vashikaran +91-7508915833 Bhubaneswar Odisha Cuttack  Astrological Remedies For Family Disputes +91-7508915833 Jammu Kashmir Srinagar Astrological Remedies For Business Loss +91-7508915833 Shimla Himachal Pradesh Hamirpur Astrological Solution For Love Marriage +91-7508915833 Jharkhand Ranchi Dhanbad Career Problem Solution Astrology +91-7508915833 Jabalpur Gwalior Husband Wife Dispute Problem Solution +91-7508915833 Mysore Gulbarga Divorce Problem Solution By Astrology +91-7508915833 Kerala Kochi Solution Of Black Magic Effect +91-7508915833 Ambala Bhiwani How Can I Solve My Love Problem +91-7508915833 Yamunanagar Kurukshetra Attract A Girl By Black Magic / Vashikaran +91-7508915833 Firozabad Mathura Vashikaran Mantra For Lost Love Back +91-7508915833 Kolhapur Amravati Love Vashikaran Solution Baba Ji +91-7508915833 Assam Guwahati Best Astrologer For Vashikaran +91-7508915833 Jamnagar Bhavnagar Tantra Mantra Specialist Astrologer +91-7508915833 Jhansi Muzaffarnagar Black Magic Totke Specialist +91-7508915833 Patiala Bathinda Easy White Magic Spells For Money +91-7508915833 sangrur Hoshiarpur Best Vashikaran Specialist Guruji +91-7508915833 Gurdaspur Pathankot Vashikaran Mantra To Convince Parents +91-7508915833 Moga Mohali Remedy To Convince Parents For Love Marriage +91-7508915833 Muktsar Barnala Financial Problem Solution Astrologer +91-7508915833 Nanded Malegaon Vashikaran Mantra To Attract Husband +91-7508915833 Jalgaon Panvel Best Breaking Love Binding Spell +91-7508915833 Visakhapatnam Vijayawada Kala Jadu Se Bachne Ke Upay +91-7508915833 Bihar Patna Mantra For Successful Married Life +91-7508915833 Jaipur Rajasthan Witchcraft Love Spells That Really Work +91-7508915833 Goa Panaji Madgaon Family Relationship Problems And Solutions +91-7508915833 Arunachal Pradesh Chhattisgarh Court Case Problem Solution Astrologer +91-7508915833 Tripura Meghalaya Get Your Love Back By Black Magic +91-7508915833 Mizoram Manipur World Famous Vashikaran Specialist +91-7508915833 Nagaland Sikkim Powerful Girl Attraction Mantra +91-7508915833 Bhavnagar Jamnagar   +91-7508915833 Remedy is the most attractive part and black magic remedies for marriage are astounding. This is one of the reasons that it surprises people by offering the required success and assuring the desired marriage.+91-7508915833 The spells offer continuous chance to sustain your marriage life. These spells are easier to deal with as they focus the main point alone, but one cannot afford to ignore the counter effective possibilities. Sameer Sulemani is an expert in black magic remedies and especially with marriage solutions.+91-7508915833  ** One ** Call ** Change ** Your ** Life **World Famous No.1_Astrologer in INDIA All Problem Solution in 24 Hours By Astrology Consult contact NO. +91-7508915833 +91-7508915833 Fees After Work . Love Problem Solution Specialist Astrologer Baba Ji Se Sabhi Samshya Ka Free Samadhan Pane Ke Liye Call Kare +91-7508915833.Get All Solutions In Your Life Within 72 Hours And With 101% Guarantee. With In Astrology Systematic Call To Baba Ji And Get Advice From Him.+91-7508915833  You can find here world famous astrologer love marriage specialist. if you want to make your love life possible then given astrological tips can make your horoscope support for doing love marriage with the desired person.Astrologer has taken a vision to make people getting married to loved ones because love is the key factor for running any relationship forever.   Why You are in Need of Love Marriage Astrology Specialist and How to make it possible for you Do you want to get married to the person you love? But the problems you face in making your love marriage possible in convincing parents for love marriage. And this all can be happen. Just because of some of the astrological reasons. There is the position of the planets and the houses in the horoscope that are not proving to be the accurate match compatibility. And the effective remedies and solutions that are let you know by love marriage specialist baba Ji can help you in solving all your marriage problem in inter caste too.This is the only webpage where you can Finding a love marriage specialist guru ji is the solution to all of your love difficulties.     Book Your Appointment If you living in Delhi | Mumbai | Chennai | Bangalore | Gurgaon | Noida | Chandigarh | Contact If you Live In Another Location and Make A Pair With your Love Ones What are Love and Different Love Marriage Problems that our famous love marriage specialist can solve? The simplest definition of world famous astrologer love marriage specialist Guru ji is that it is a marriage in which love first occurs or if the boy or girl feels that they are suitable for each other then they decide to get married. It happens most of the time that love marriages are against our cultures, to do so is a sin, etc. This mentality has been going on since the old times, that is why youths have to face trouble. And the reason is that parents refuse to marry because their attitude is similar to the society that love marriage is against rites, in Hinduism, it is described as a crime and so on. Below we are going to tell you different love marriage problems afterwards we will tell you the solution for love marriage problems.   The person you want to marry doesn’t want to marry you Intercaste Love Marriage Problems Boyfriend or Girlfriend has deceived you After Love marriage, your partner has lost interest in you The spouse has an illicit relationship without someone else and so on Why do Parents refuse Inter Caste Marriage | love marriage specialists in india? Most parents refuse to inter cast marriage and the main reason is that this type of marriage has seen mostly honour killing incidents and no parent wants their child to die, etc. In addition to this, parents’ have thought that marriages that are done without the choice of the parents cannot be blissful. The general solution to this problem is convincing your parents in any way and gets their approval. And if you don’t get success in your attempts to convince parents for intercaste marriage then you can contact ours inter caste love marriage specialist to know how to agree your parents for love marriage.   Love is difficult to find, particularly in India, where marriages are viewed as a union of two families rather than two individuals. People are gradually warming to the concept of love marriage specialist in india, but getting down the aisle in a love marriage has never been so easy. Marriages are written in the stars, as they claim, and love marriage specialist Astrologer has made love marriages a reality issue.
    • 17-4-2024   Websites:- www.vashikaranspecialistbabaji.com https://www.instagram.com/workinglovespell/ https://www.facebook.com/sameer.sulemani.96199/ https://astrologersameersulemani.wordpress.com/ https://bestlovevashikaranexpert.tumblr.com/ https://www.linkedin.com/pulse/true-vashikaran-love-call-now-91-7508915833-sameer-sulemani-baba-ji   World Famous No.1 Astrologer IN india +91-7508915833 vashikaran specialist astrologer indore bhopal hyderabad surat vadodara pune mumbai nashik nagpur gurgaon noida delhi aligarh lucknow patna kanpur chennai bangalore lucknow gwalior raipur meerut Madurai. +91-7508915833 Prem sambandhit Kisi bhi Prakar ki samasya ke Samadhan 24 ghante Mein Karte Hain. t sambandhit samasya ka samadhan guarantee Se Karte Hain. Famous & Best love marriage specialist astrologer Vashikaran Specialist Baba Ji in Bangalore /Delhi /Kolkata /Noida vashikaran love marriage specialist Baba ji Vashikaran Specialist Love Marriage Specialist in Mumbai Vashikaran Specialist Mumbai Love Marriage Specialist in Mumbai Mob. no.1 get solutions for all problems with in few hours on call@@@@@@ Love Marriage Specialist Baba Ji LOVE problem SOLUTION Baba  Ji  love vashikaran specialist Baba in mumbai love marriage vashikaran specialist Baba ji in usa Love Marriage Specialist Baba Ji intercast love marriage specialist Baba in canada marriage specialist love problem solution Baba ji Muthkarani Vashikaran Specialist Bengali Baba ji intercast love marriage specialist in Canada Usa vashikaran in delhi husband wife dispute solution Love Marriage Specialist Baba Ji Love Marriage Specialist urdu LOVE Vashikaran specialist Love Marriage Specialist In Chandigarh Vashikaran Get Your intercast love marriage specialist astrologer love marriage specialist Baba Astrology vashikaran specialist vashikaran specialist urdu famliy problem solution specialist get solutions for all problems with in few hours on call kinf of problem like- love problem, love marriage problem, parents approval for love marriage, family problem, business problem, vashikaran, husband wife love problem, divorce problem, lost love back etc. Guru Ji have many year Experince in this field so you don’t need to worry just contact and get solution for your problem if you have any problem any doubt then direct contact +91-7508915833 if you was deceived then don’t worry you will get solution in here whatsapp also avaliable +91-7508915833 On The Basis Of Dasha, Antardasha And Mahadasha Astrology Can Very Rightly Predict The Future Quite Accurately. +91-7508915833 Moreover, Not Only Does It Predicts The Goods And The ills Of The Future, But Also Proves As A Source Of Providing Appropriate Remedies To Recover From The Odds Hidden In The Future. In This Way It Brings About A New Ray Of Hope Into The Lives Of People With An Opposing Motion Of The Weak Planets And Makes Their Living Happier And Healthier. +91-7508915833 Tantra Mantra Se Garh Bathe Har Samshya Ka 101% Guaranteed Samadhan . +91-7508915833 Only 1 Call Can Changed Your Life By Guru ji .+91-7508915833 Bring husband back quickly using husband vashikaran mantra and enjoy happy married life. Guruji have many free lal kitab upayas for husband who left his wife and kids and free mantras, remedies for lost love, boyfriend back. +91-7508915833  Services:- Love Problem Solution Specialist +91-7508915833 Delhi Noida inter caste marriage problems solutions +91-7508915833 Mumbai Pune Kamdev Vashikaran Mantra Specialist +91-7508915833 Kolkata West Bengal Howrah Black Magic Specialist Astrologer +91-7508915833 Bangalore Karnataka BoyFriend Control Vashikaran Specialist +91-7508915833 Ahmedabad Gujarat Surat Mohini Vashikaran Mantra In Hindi +91-7508915833 Hyderabad Andhra Pradesh Telangana Love Breakup Problem Solution +91-7508915833 Chennai Tamil Nadu Lost Love Back Specialist Pandit Ji +91-7508915833 Lucknow Kanpur Business Job problem solution +91-7508915833 Nagpur Maharashtra Nashik Powerful Love Spells That Work Fast +91-7508915833 Indore Bhopal Get Ex Love Back By Vashikaran Mantra +91-7508915833 Thane Solapur Girl Vashikaran Specialist Tantrik Baba +91-7508915833 Navi Mumbai Aurangabad Famous Black Magic Removal Tantrik +91-7508915833 Chandigarh Punjab Love Marriage Specialist Astrologer +91-7508915833 Vadodara Rajkot Kala Jadu Tona Specialist +91-7508915833 Ghaziabad Gurugram Mantra To Control Girlfriend/ Boyfriend +91-7508915833 Ludhiana Amritsar Gada Dhan Solution Specialist +91-7508915833 Jalandhar Malerkotla Died Mantra For Kill / Destroy Enemy +91-7508915833 Haryana Panipat Black Magic Spells To Kill Someone +91-7508915833 Rohtak Sonipat Lottery Satta Number Specialist +91-7508915833 Coimbatore Madurai  Black Magic Love Spells Caster +91-7508915833 Agra Uttar Pradesh Allahabad Black Magic To Remove Vashikaran +91-7508915833 Faridabad Moradabad Vashikaran Remedies For Love Marriage +91-7508915833 Meerut Varanasi Black Magic Remedies For Marriage +91-7508915833 Ujjain Madhya Pradesh Vashikaran Mantra To Control Husband Wife +91-7508915833 Bareilly Aligarh Love Problem Solution By Vashikaran +91-7508915833 Bhubaneswar Odisha Cuttack  Astrological Remedies For Family Disputes +91-7508915833 Jammu Kashmir Srinagar Astrological Remedies For Business Loss +91-7508915833 Shimla Himachal Pradesh Hamirpur Astrological Solution For Love Marriage +91-7508915833 Jharkhand Ranchi Dhanbad Career Problem Solution Astrology +91-7508915833 Jabalpur Gwalior Husband Wife Dispute Problem Solution +91-7508915833 Mysore Gulbarga Divorce Problem Solution By Astrology +91-7508915833 Kerala Kochi Solution Of Black Magic Effect +91-7508915833 Ambala Bhiwani How Can I Solve My Love Problem +91-7508915833 Yamunanagar Kurukshetra Attract A Girl By Black Magic / Vashikaran +91-7508915833 Firozabad Mathura Vashikaran Mantra For Lost Love Back +91-7508915833 Kolhapur Amravati Love Vashikaran Solution Baba Ji +91-7508915833 Assam Guwahati Best Astrologer For Vashikaran +91-7508915833 Jamnagar Bhavnagar Tantra Mantra Specialist Astrologer +91-7508915833 Jhansi Muzaffarnagar Black Magic Totke Specialist +91-7508915833 Patiala Bathinda Easy White Magic Spells For Money +91-7508915833 sangrur Hoshiarpur Best Vashikaran Specialist Guruji +91-7508915833 Gurdaspur Pathankot Vashikaran Mantra To Convince Parents +91-7508915833 Moga Mohali Remedy To Convince Parents For Love Marriage +91-7508915833 Muktsar Barnala Financial Problem Solution Astrologer +91-7508915833 Nanded Malegaon Vashikaran Mantra To Attract Husband +91-7508915833 Jalgaon Panvel Best Breaking Love Binding Spell +91-7508915833 Visakhapatnam Vijayawada Kala Jadu Se Bachne Ke Upay +91-7508915833 Bihar Patna Mantra For Successful Married Life +91-7508915833 Jaipur Rajasthan Witchcraft Love Spells That Really Work +91-7508915833 Goa Panaji Madgaon Family Relationship Problems And Solutions +91-7508915833 Arunachal Pradesh Chhattisgarh Court Case Problem Solution Astrologer +91-7508915833 Tripura Meghalaya Get Your Love Back By Black Magic +91-7508915833 Mizoram Manipur World Famous Vashikaran Specialist +91-7508915833 Nagaland Sikkim Powerful Girl Attraction Mantra +91-7508915833 Bhavnagar Jamnagar   +91-7508915833 Remedy is the most attractive part and black magic remedies for marriage are astounding. This is one of the reasons that it surprises people by offering the required success and assuring the desired marriage.+91-7508915833 The spells offer continuous chance to sustain your marriage life. These spells are easier to deal with as they focus the main point alone, but one cannot afford to ignore the counter effective possibilities. Sameer Sulemani is an expert in black magic remedies and especially with marriage solutions.+91-7508915833  ** One ** Call ** Change ** Your ** Life **World Famous No.1_Astrologer in INDIA All Problem Solution in 24 Hours By Astrology Consult contact NO. +91-7508915833 +91-7508915833 Fees After Work . Love Problem Solution Specialist Astrologer Baba Ji Se Sabhi Samshya Ka Free Samadhan Pane Ke Liye Call Kare +91-7508915833.Get All Solutions In Your Life Within 72 Hours And With 101% Guarantee. With In Astrology Systematic Call To Baba Ji And Get Advice From Him.+91-7508915833  You can find here world famous astrologer love marriage specialist. if you want to make your love life possible then given astrological tips can make your horoscope support for doing love marriage with the desired person.Astrologer has taken a vision to make people getting married to loved ones because love is the key factor for running any relationship forever.   Why You are in Need of Love Marriage Astrology Specialist and How to make it possible for you Do you want to get married to the person you love? But the problems you face in making your love marriage possible in convincing parents for love marriage. And this all can be happen. Just because of some of the astrological reasons. There is the position of the planets and the houses in the horoscope that are not proving to be the accurate match compatibility. And the effective remedies and solutions that are let you know by love marriage specialist baba Ji can help you in solving all your marriage problem in inter caste too.This is the only webpage where you can Finding a love marriage specialist guru ji is the solution to all of your love difficulties.     Book Your Appointment If you living in Delhi | Mumbai | Chennai | Bangalore | Gurgaon | Noida | Chandigarh | Contact If you Live In Another Location and Make A Pair With your Love Ones What are Love and Different Love Marriage Problems that our famous love marriage specialist can solve? The simplest definition of world famous astrologer love marriage specialist Guru ji is that it is a marriage in which love first occurs or if the boy or girl feels that they are suitable for each other then they decide to get married. It happens most of the time that love marriages are against our cultures, to do so is a sin, etc. This mentality has been going on since the old times, that is why youths have to face trouble. And the reason is that parents refuse to marry because their attitude is similar to the society that love marriage is against rites, in Hinduism, it is described as a crime and so on. Below we are going to tell you different love marriage problems afterwards we will tell you the solution for love marriage problems.   The person you want to marry doesn’t want to marry you Intercaste Love Marriage Problems Boyfriend or Girlfriend has deceived you After Love marriage, your partner has lost interest in you The spouse has an illicit relationship without someone else and so on Why do Parents refuse Inter Caste Marriage | love marriage specialists in india? Most parents refuse to inter cast marriage and the main reason is that this type of marriage has seen mostly honour killing incidents and no parent wants their child to die, etc. In addition to this, parents’ have thought that marriages that are done without the choice of the parents cannot be blissful. The general solution to this problem is convincing your parents in any way and gets their approval. And if you don’t get success in your attempts to convince parents for intercaste marriage then you can contact ours inter caste love marriage specialist to know how to agree your parents for love marriage.   Love is difficult to find, particularly in India, where marriages are viewed as a union of two families rather than two individuals. People are gradually warming to the concept of love marriage specialist in india, but getting down the aisle in a love marriage has never been so easy. Marriages are written in the stars, as they claim, and love marriage specialist Astrologer has made love marriages a reality issue.
  • Topics

×
×
  • Create New...