Jump to content

VinDizel™

Banned
  • Posts

    25
  • Credits

  • Joined

  • Last visited

  • Days Won

    1
  • Feedback

    0%

VinDizel™ last won the day on December 18 2016

VinDizel™ had the most liked content!

About VinDizel™

Profile Information

  • Gender
    Male
  • Country
    Greece

Recent Profile Visitors

617 profile views

VinDizel™'s Achievements

Newbie

Newbie (1/16)

0

Reputation

  1. γεια σου φιλε μμ ειδα οτι ενδιαφερεσε για bot πες μ λιγο ποσα δινεις για να σου πω αν ειναι οκ
  2. My First Wallpaper Image On Lineage2 Created By Me Photoshop 1366x768 = Download 1920x1080 = Download
  3. // ==UserScript== // @name Facebook Autolike // @namespace http://silverboy.ir // @description auto facebook like<br>this script like first 60 post in your wall in facebook, its liking post with random time , so facebook cant detect you as spam<br><br><a href="http://silverboy.ir" rel="nofollow">http://silverboy.ir</a> // @include /^https?://www\.facebook\.com/.*$/ // @require http://code.jquery.com/jquery-1.8.0.min.js // @grant none // @version 0.0.1.20150114051653 // ==/UserScript== jQuery.noConflict(); var autolikeLiked = 0; var autolikeTimeout = false; var autolikeArray = Array(3000, 2000, 4000, 1500,3000, 2000, 4000, 1500,3000, 2000, 4000, 1500); function autolikeFunc(){ if(autolikeLiked == 60) return false; if(jQuery('.UFILikeLink').length > 0 && jQuery('button[name="like"]').length == 0) { jQuery('.UFILikeLink').each(function(){ if(jQuery(this).text() == 'Like' && jQuery(this).attr('title') != 'Like this comment') { jQuery(this).removeAttr('href'); jQuery(this)[0].click(); var num = Math.floor((Math.random()*10)+1); clearTimeout(autolikeTimeout); var autolikeArray = Array(3000, 2000, 4000, 1500,3000, 2000, 4000, 1500,3000, 2000, 4000, 1500); setTimeout(autolikeFunc, autolikeArray[num]) autolikeLiked++; return false; You will take complete code with payment ;) 20 Euros Paypal : plakasteo@gmail.com
  4. Γεια σου φιλε μμ πλεον στους περισσοτερους servers θα βρεις πολυ ισχυρο GameGuard Μπορω να σου δωσω ενα Bot μονο με 10 Ευρω αν ενδιαφερεσε στειλε μμ μνμ This Post created By : Zexal
  5. I See you need bot for Lineage 2 I Sell One For 25 Euros ;) :D
  6. I See you need bot for Lineage 2 I Sell One For 25 Euros ;) :D
  7. Το Αλογο του πολεμου Φοβερη Ταινια!!!! Trailer https://www.youtube.com/watch?v=B7lf9HgFAwQ
  8. Add Me Skype : Greexel[Owner] I Have Bot Unlimited :D
  9. Καλησπερα φιλε μου Κανεμε add Facebook για να σε βοηθησω :) ;) Plakas Theodoshs
  10. ### Eclipse Workspace Patch 1.0 #P L2jFrozen_GameServer Index: head-src/com/l2jfrozen/Config.java =================================================================== --- head-src/com/l2jfrozen/Config.java (revision 938) +++ head-src/com/l2jfrozen/Config.java (working copy) @@ -2343,6 +2343,8 @@ public static int MONSTER_RETURN_DELAY; public static boolean SCROLL_STACKABLE; + public static boolean LS_STACKABLE; + public static boolean BOG_STACKABLE; public static boolean ALLOW_VERSION_COMMAND; public static boolean ALLOW_CHAR_KILL_PROTECT; @@ -2469,6 +2471,8 @@ ALT_PLAYER_PROTECTION_LEVEL = Integer.parseInt(L2JFrozenSettings.getProperty("AltPlayerProtectionLevel", "0")); MONSTER_RETURN_DELAY = Integer.parseInt(L2JFrozenSettings.getProperty("MonsterReturnDelay", "0")); SCROLL_STACKABLE = Boolean.parseBoolean(L2JFrozenSettings.getProperty("ScrollStackable", "False")); + LS_STACKABLE = Boolean.parseBoolean(L2JFrozenSettings.getProperty("BOGStackable", "False")); + BOG_STACKABLE = Boolean.parseBoolean(L2JFrozenSettings.getProperty("LSStackable", "False")); ALLOW_CHAR_KILL_PROTECT = Boolean.parseBoolean(L2JFrozenSettings.getProperty("AllowLowLvlProtect", "False")); CLAN_LEADER_COLOR_ENABLED = Boolean.parseBoolean(L2JFrozenSettings.getProperty("ClanLeaderNameColorEnabled", "true")); CLAN_LEADER_COLORED = Integer.parseInt(L2JFrozenSettings.getProperty("ClanLeaderColored", "1")); Index: head-src/com/l2jfrozen/gameserver/network/clientpackets/RequestRefine.java =================================================================== --- head-src/com/l2jfrozen/gameserver/network/clientpackets/RequestRefine.java (revision 938) +++ head-src/com/l2jfrozen/gameserver/network/clientpackets/RequestRefine.java (working copy) @@ -246,7 +246,12 @@ } // consume the life stone - if(!player.destroyItem("RequestRefine", refinerItem, null, false)) + if (Config.LS_STACKABLE) + { + if(!player.destroyItem("RequestRefine", refinerItem.getObjectId(), 1, null, false)) + return false; + } + else if(!player.destroyItem("RequestRefine", refinerItem, null, false)) return false; // consume the gemstones Index: config/functions/l2jfrozen.properties =================================================================== --- config/functions/l2jfrozen.properties (revision 938) +++ config/functions/l2jfrozen.properties (working copy) @@ -188,6 +188,8 @@ # Scroll is Stackable? (default = false) ScrollStackable = false +LSStackable = false +BOGStackable = false # ------------------------------------------- # Clan Leader Color Config - Index: head-src/com/l2jfrozen/gameserver/network/clientpackets/RequestExEnchantSkill.java =================================================================== --- head-src/com/l2jfrozen/gameserver/network/clientpackets/RequestExEnchantSkill.java (revision 938) +++ head-src/com/l2jfrozen/gameserver/network/clientpackets/RequestExEnchantSkill.java (working copy) @@ -135,7 +135,10 @@ return; } // ok - player.destroyItem("Consume", spb, trainer, true); + if (Config.BOG_STACKABLE) + player.destroyItem("Consume", spbId, 1, trainer, true); + else + player.destroyItem("Consume", spb, trainer, true); } } else Here its the code ;)
  11. If you have facebook add me I Will help you my friend Plakas Theodoshs
×
×
  • Create New...