NinjaSkid v0.14b For WoW v3.12 menu

Shout-Out

User Tag List

Page 2 of 11 FirstFirst 123456 ... LastLast
Results 16 to 30 of 163
  1. #16
    tantos's Avatar Active Member
    Reputation
    19
    Join Date
    Dec 2008
    Posts
    118
    Thanks G/R
    3/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    is this working with 3.09? or have u got any "working" version what works for 3.09

    NinjaSkid v0.14b For WoW v3.12
  2. #17
    ReloaD1010's Avatar Member
    Reputation
    5
    Join Date
    May 2009
    Posts
    46
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by spawnfestis View Post
    Solution to devs;

    Code:
    Health = PlayerBase + 0x8 + PlayerHealth;
    MaxHealth = PlayerBase + 0x8 + PlayerMaxHealth;
    
    if (Health < RestHealth) {
         //rest
    }
    else {
         //continue
    }
    twocentstwocentstwocents
    Where you have to put this?

  3. #18
    Arus's Avatar Member
    Reputation
    4
    Join Date
    Sep 2007
    Posts
    35
    Thanks G/R
    1/2
    Trade Feedback
    5 (80%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello,

    i get an Error when i wanna add an "Waypoint".

    Line -1:



    Error: Variable used without being declared

  4. #19
    An7hrax's Avatar Active Member
    Reputation
    44
    Join Date
    Jul 2007
    Posts
    185
    Thanks G/R
    26/12
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    If you read the posts it will say that it don't work yet.

  5. #20
    spawnfestis's Avatar Contributor
    Reputation
    85
    Join Date
    May 2009
    Posts
    261
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Arus View Post
    Hello,

    i get an Error when i wanna add an "Waypoint".

    Line -1:



    Error: Variable used without being declared
    That happens when you try to reach an address which is yet not declared.

    To the devs:
    Code:
    int health;
    if (health < restHealth) {
        //dostuff
        //declare hp here(which means it tries to reach Health which is currently NULL before it gets the actual hp.)
    }
    Solve it by reading the address and assign the used variable BEFORE you use it. twocentstwocentstwocentstwocentstwocentstwocentstwocentstwocentstwocentstwocents twocentstwocentstwocentstwocentstwocents

  6. #21
    Kallblodig's Avatar Contributor
    Reputation
    113
    Join Date
    Dec 2008
    Posts
    129
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    NEWS
    Im going out of town untill saturday, all questions referred to Personinquestion. I have sent him the script fixes and v0.15 should be out tonight or tomorrow with the
    Add waypoint bug
    Read if your player is using mana

    Peace dudes!

  7. #22
    Gümpel's Avatar Member
    Reputation
    1
    Join Date
    May 2009
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Sry my engl. sucks and maybe I got u wrong...

    But how can the Program NOT crash since a NULL isn´t 0?

    for example

    dim a as boolean
    dim b as integer

    Do While a < b
    'heal rest what ever
    Loop


    *booom*

  8. #23
    csejby's Avatar Member
    Reputation
    1
    Join Date
    Apr 2009
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Read if your player is using mana-this fix mean it will stand up after eating??)

  9. #24
    Glisern's Avatar Member
    Reputation
    8
    Join Date
    Jan 2008
    Posts
    30
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Will try this out. thanks man

  10. #25
    Demordre's Avatar Member
    Reputation
    1
    Join Date
    May 2009
    Posts
    1
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hmmm when i get done with my config.ini then load the "profile.txt" then select check boxes of simple monster search and circle path and what not...

    once im done setting that up with wow in max window mode i click start and it goes to WoW window ... then does nothing???

    im using game version 3.0.9 any ideas on whats wrong?

  11. #26
    personinquestion's Avatar Active Member
    Reputation
    22
    Join Date
    Mar 2009
    Posts
    23
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by spawnfestis View Post
    Solution to devs;

    Code:
    Health = PlayerBase + 0x8 + PlayerHealth;
    MaxHealth = PlayerBase + 0x8 + PlayerMaxHealth;
    
    if (Health < RestHealth) {
         //rest
    }
    else {
         //continue
    }
    twocentstwocentstwocents
    Thanks but I did something even more fun :-)

    Code:
    func Rest($Handle, $pBase)
    ToolTip('Regaining HP and Mana"',0,0)
    $MaxHealth = _GetMaxHealth($Handle, $pBase)
    $MaxMana = _GetMaxMana($Handle, $pBase)
    $HealthPercent = (_GetHealth($Handle, $pBase) / $MaxHealth) * 100
    $ManaPercent = (_GetMana($Handle, $pBase) / $MaxMana) * 100
    If $ManaPercent == 0 Then
    	$ManaPercent = 100   ;probably doesn't use mana
    EndIf
    
    if $HealthPercent == 0 Then
    	$HealthPercent = 100  ;I think we died
    EndIf
    
    If $ManaPercent < 60 AND $HealthPercent < 60 Then
    	Send($Eat)
    	Send($Drink)
    	
    	Do
    		$ManaPercent = (_GetMana($Handle, $pBase) / $MaxMana) * 100
    		$HealthPercent = (_GetHealth($Handle, $pBase) / $MaxHealth) * 100
    	until ($ManaPercent > 89 AND $HealthPercent > 89)
    	EndIf
    
    
    If $ManaPercent < 60 Then
    	Send($Eat)
    
    	Do
    		$ManaPercent = (_GetMana($Handle, $pBase) / $MaxMana) * 100
    	until ($ManaPercent > 90)
    	
    EndIf
    
    
    
    
    If $HealthPercent < 60 Then
    	Send($Drink)
    
    	Do
    		$HealthPercent = (_GetHealth($Handle, $pBase) / $MaxHealth) * 100
    	until ($HealthPercent > 90)
    	
    EndIf
    
    EndFunc
    The thing that caused it to rest forever, was:
    Code:
    $MaxMana = _GetMaxHealth($Handle, $pBase) ; D'OH!
    Last edited by personinquestion; 05-20-2009 at 12:46 PM.

  12. #27
    Origano's Avatar Active Member
    Reputation
    44
    Join Date
    Apr 2008
    Posts
    232
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Three cheers for the mana/hp fix! I would give you rep if I hadn't already gave it to you : (

  13. #28
    ReloaD1010's Avatar Member
    Reputation
    5
    Join Date
    May 2009
    Posts
    46
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    personinquestion please, make something to get unstucked
    I get stucked a lot of times and cant get unstucked

    good work

  14. #29
    personinquestion's Avatar Active Member
    Reputation
    22
    Join Date
    Mar 2009
    Posts
    23
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    better unstuck is being worked on but right now I would reccomend using only very open areas, and carefully selecting profiles, also @People asking me why it doesn't work with 3.09, you can see in the title that it's made for 3.12, I'm probably not going to create a down graded version, once I clean up the code (probably a week) I'll post it so that you can manually downgrade/upgrade.

  15. #30
    Origano's Avatar Active Member
    Reputation
    44
    Join Date
    Apr 2008
    Posts
    232
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I will let it bot for whole next night, reporting back to you in 12 hours : )

    I wonder why I am risking an account with level 80 full t7 and stuff druid Guess I am just bored. Also isnt the first ban about 72h by any luck?

Page 2 of 11 FirstFirst 123456 ... LastLast

Similar Threads

  1. Why Pay for WOW Hacks?
    By LeGeNdZ in forum World of Warcraft Exploits
    Replies: 72
    Last Post: 04-12-2007, 04:57 AM
  2. Remember the Autoit for WoW Glider?
    By Kashfox in forum World of Warcraft General
    Replies: 11
    Last Post: 07-20-2006, 06:15 PM
  3. Wepon Skins for Wow.
    By XxKajxX in forum World of Warcraft General
    Replies: 5
    Last Post: 07-06-2006, 07:32 AM
  4. World of Warcraft WoW!Bot (GetALifeBot) 0.61 for WoW 1.9.4 + FishBot
    By Matt in forum World of Warcraft Bots and Programs
    Replies: 43
    Last Post: 04-18-2006, 04:55 AM
  5. AutoIt Macro for WoW AFK Bot
    By Matt in forum World of Warcraft Bots and Programs
    Replies: 8
    Last Post: 04-06-2006, 06:01 AM
All times are GMT -5. The time now is 01:03 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search