Signup Now
Page 678 of 863 FirstFirst ... 178578628668676677678679680688728778 ... LastLast
Results 6,771 to 6,780 of 8626
  1. #6771
    Free User downloadkct's Avatar
    Join Date
    Dec 2013
    Location
    Rio de Janeiro
    Posts
    1,165
    Reputation
    25
    Rep Power
    26
    @Dworak
    check your inbox please
    Old 'n Proud Neobot-Elfbot and blackd user

  2. #6772
    Wind Powered
    Join Date
    Dec 2013
    Location
    dvscripts.com
    Posts
    7,098
    Reputation
    433
    Rep Power
    42
    Quote Originally Posted by downloadkct View Post
    @Dworak
    check your inbox please
    Replied !!

    Soon for Free !!!!




  3. #6773
    Free User Vaier's Avatar
    Join Date
    Oct 2014
    Posts
    542
    Reputation
    40
    Rep Power
    23
    Bu mp !


    Level Latest Scripts
    100+
    [MS | ED] | [RP] New Giant Spiders Cave
    100+
    [ED] Elemental Spheres [Soils]
    280+
    [MS | ED] Oramond Sewers X1
    360+
    [MS | ED] Asura Palace
    360+
    [MS | ED] Oramond East Raid 500+
    360+
    [MS | ED] Oramond Fury Dungeon

  4. #6774
    Free User downloadkct's Avatar
    Join Date
    Dec 2013
    Location
    Rio de Janeiro
    Posts
    1,165
    Reputation
    25
    Rep Power
    26
    @Dworak
    Check your inbox please
    Old 'n Proud Neobot-Elfbot and blackd user

  5. #6775
    Wind Powered
    Join Date
    Dec 2013
    Location
    dvscripts.com
    Posts
    7,098
    Reputation
    433
    Rep Power
    42
    Quote Originally Posted by downloadkct View Post
    @Dworak
    Check your inbox please
    You should have it on email

  6. #6776
    Wind Powered
    Join Date
    Dec 2013
    Location
    dvscripts.com
    Posts
    7,098
    Reputation
    433
    Rep Power
    42


    Code:
    Update to 1.2
    * Fixed Buying SDs
    All Customers check your E-Mails for update !!

  7. #6777
    Free User
    Join Date
    Nov 2015
    Posts
    9
    Reputation
    10
    Rep Power
    0
    Hello man big fan of your scripts ! I have a problem with soft changer on the Sea Serpent Script. It doesn't equip them at all. I've tried to modify the intervals but still no boots are equipped :c

  8. #6778
    Free User
    Join Date
    Jun 2015
    Posts
    2
    Reputation
    10
    Rep Power
    0
    I bought script from you with pagseguro, the script go to my email in 24h? thank you

  9. #6779
    Wind Powered
    Join Date
    Dec 2013
    Location
    dvscripts.com
    Posts
    7,098
    Reputation
    433
    Rep Power
    42
    Quote Originally Posted by Zhordz View Post
    Hello man big fan of your scripts ! I have a problem with soft changer on the Sea Serpent Script. It doesn't equip them at all. I've tried to modify the intervals but still no boots are equipped :c
    try paste this hotkey :

    -- ## Soft Boots ## --
    init start
    -- local SCRIPT_VERSION = '1.0.1'

    local boots = "boots of haste" -- this is the alternative boots, to equip while you are in pz, or you have enough mana
    local softnumbers = {consider = 'mppc', equip = {85,75}, unequip = {95,95}} -- check this, it's randomized, in this example it will equip soft if you have less than 40~60% of MP, and equip soft boots if you have more than 80~90% of MP.
    local alertifnosoft = true -- this will play an alert if a soft wasn't found on your backpacks.
    local soundfile = 'monster.wav' -- this is the sound you want to use play when you have no soft
    -- dont change anything below.

    local soft = {id = 6529, use = 3549, worn = 6530}
    local firewalker = {id = 9019, use = 9018, worn = 9020, enchantid = 676}
    boots = itemid(boots)
    if boots == 6529 then
    boots = {id = boots, use = 3549, worn = 6530}
    elseif boots == 9019 then
    boots = {id = boots, use = 9018, worn = 9020}
    else
    boots = {id = boots, use = boots, worn = boots}
    end
    local ntype,nequip,nunequip = softnumbers.consider:lower(), math.random(unpack(softnumbers.equip)), math.random(unpack(softnumbers.unequip))
    local warningmsgtime = 0
    if getsetting('Settings/MouseMode') == 'Simulate Mouse' then
    warningmsgtime = $timems+20000
    end

    setpriority(100, 0, 1000, 10000, false)
    init end

    auto(300,700)
    if $timems < warningmsgtime then
    listas('BE CAREFUL!! If you do a left click on your screen while the script is trying to move the boots you may lose your item!')
    else
    listas('Soft Boots Changer')
    end

    local cur = {mppc = $mppc, hppc = $hppc, mp = $mp, hp = $hp}
    if $feet.id == soft.use then
    if $pzone or cur[ntype] > nunequip then
    if itemcount(boots.id, 'backpack') > 0 then
    equipitem(boots.id, 'feet', 'backpack', 100) waitping()
    else
    moveitems(soft.use, 'backpack', 'feet', 100) waitping()
    end
    nunequip = math.random(unpack(softnumbers.unequip))
    end
    elseif $feet.id == soft.worn or $feet.id == 0 then
    if cur[ntype] < nequip and not $pzone and itemcount(soft.id, 'backpack') > 0 then
    equipitem(soft.id, 'feet', 'backpack', 100) waitping()
    nequip = math.random(unpack(softnumbers.equip))
    else
    if itemcount(boots.id) > 0 then
    equipitem(boots.id, 'feet', 'backpack', 100) waitping()
    elseif $feet.id > 0 then
    moveitems(soft.worn, 'backpack', 'feet', 100) waitping()
    end
    nunequip = math.random(unpack(softnumbers.unequip))
    end
    elseif $feet.id == boots.id then
    if cur[ntype] < nequip and not $pzone and itemcount(soft.id, 'backpack') > 0 then
    equipitem(soft.id, 'feet', 'backpack', 100) waitping()
    nequip = math.random(unpack(softnumbers.equip))
    end
    end

    if alertifnosoft and $feet.id ~= soft.use and itemcount(soft.id) == 0 and itemcount(soft.worn) > 0 then
    playsoundflash(soundfile)
    end


    Quote Originally Posted by conconziin View Post
    I bought script from you with pagseguro, the script go to my email in 24h? thank you
    All Aprovada payments are done !!
    Thanks !

  10. #6780
    Free User
    Join Date
    Sep 2014
    Posts
    38
    Reputation
    10
    Rep Power
    0
    tibia cash is up to 24h right ? @Dworak

 

 

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •