[Help] Waypoint making menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 23
  1. #1
    omid's Avatar Member
    Reputation
    1
    Join Date
    Mar 2008
    Posts
    33
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [Help] Waypoint making

    how can i create waypoints in C# for a bot? i want a simple way and im using blackmagic dll if its important to know and i get the position of XYZ with :

    Code:
                float playerx = WoW.ReadFloat(Pbase + 0x798); // Read players xlocation
                float playery = WoW.ReadFloat(Pbase + 0x79C); // Read players ylocation
                float playerz = WoW.ReadFloat(Pbase + 0x7A0); // Read players zlocation
                xlabel.Text = "Player X position: " + playerx; // Sets players xlocation label
                ylabel.Text = "Player Y position: " + playery; // Sets players ylocation label
                zlabel.Text = "Player Z position: " + playerz; // Sets players zlocation label

    and this for moving

    Code:
                WoW.WriteFloat(0xB9259C, playery + 10); // Add 10 feet onto current x pos
                WoW.WriteFloat(0xB925A0, playery + 10); // Add 10 feet onto current y pos
                WoW.WriteInt(0xB9252C, 4); // Set Click to move state 4=Walk
    i dont want here some answers that here is not my section and btw i searched alots of times didnt find something usefull

    [Help] Waypoint making
  2. #2
    Azzie2k8's Avatar Member
    Reputation
    11
    Join Date
    Apr 2009
    Posts
    190
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    um just save them in a List of some kind or to a profile stored in xml or something....

    btw dont you think a vector3 would be good to use instead of having 3 seperate floats ?

    edit: btw why dont you just make a simple button or distance check to the last added waypoint when you move so the new position is saved in the list or something ?

  3. #3
    omid's Avatar Member
    Reputation
    1
    Join Date
    Mar 2008
    Posts
    33
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    any source and whats vector3 sorry because i dont know

  4. #4
    miceiken's Avatar Contributor Authenticator enabled
    Reputation
    209
    Join Date
    Dec 2007
    Posts
    401
    Thanks G/R
    7/9
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Well, do you know what google is?

  5. #5
    omid's Avatar Member
    Reputation
    1
    Join Date
    Mar 2008
    Posts
    33
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    yeah i know and searched alots that why i made a thread else i know this is important section and i dont have post newbies question

  6. #6
    tesserajk's Avatar Member
    Reputation
    1
    Join Date
    Apr 2007
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm feeling luck on google for "c# vector3":

    Vector3 Structure (Microsoft.WindowsMobile.DirectX)

    Its a starting point.

  7. #7
    omid's Avatar Member
    Reputation
    1
    Join Date
    Mar 2008
    Posts
    33
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    oh u ment look for vector i tought u say search for waypoints tut

    edit : anyways what i have to put waypoints on?? i have label that gets the X , Y ,Z and whats the best Form toolbox i can make it on it and save it:?? if possible i want one like wowrobot waypoint making hows that made??
    Last edited by omid; 04-14-2010 at 10:31 AM.

  8. #8
    tesserajk's Avatar Member
    Reputation
    1
    Join Date
    Apr 2007
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I can't really comprehend exactly what you just said. But, if you have any more questions the link below will be a great resource.

    Credits to Apoc

    http://www.mmowned.com/forums/programming/237023-bot-developers-simple-waypoint-navigation-system-including-loading-saving.html

  9. #9
    omid's Avatar Member
    Reputation
    1
    Join Date
    Mar 2008
    Posts
    33
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i know but i really dont understand how thats work

    and wow-robot is like this :



    what does this system uses??

    edit : No need of mount, flying mount, target function and distance just a waypoint creator and read from it

  10. #10
    lanman92's Avatar Active Member
    Reputation
    50
    Join Date
    Mar 2007
    Posts
    1,033
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    All they do is run a loop that checks your location's distance from the previous location. If it's >10, add it to the list. Then they just save it to an xml file(most likely). And you can simply add more things to the xml file such as factions, etc. You need to read Apoc's tutorial that was suggested earlier.

  11. #11
    omid's Avatar Member
    Reputation
    1
    Join Date
    Mar 2008
    Posts
    33
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    ok thanks all but any idea how to use the Apocs tut>? because i do not underestand this part:

    public float X { get; set; }
    public float Y { get; set; }
    public float Z { get; set; }
    does this get the XYZ itself or what should i do (using blackmagic)

  12. #12
    lanman92's Avatar Active Member
    Reputation
    50
    Join Date
    Mar 2007
    Posts
    1,033
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    You need to learn C#.

  13. #13
    namreeb's Avatar Legendary

    Reputation
    668
    Join Date
    Sep 2008
    Posts
    1,029
    Thanks G/R
    8/222
    Trade Feedback
    0 (0%)
    Mentioned
    9 Post(s)
    Tagged
    0 Thread(s)
    Yup. You're in over your head.

  14. #14
    suicidity's Avatar Contributor
    Reputation
    207
    Join Date
    Oct 2006
    Posts
    1,439
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    None of you realized this from his first post?


  15. #15
    omid's Avatar Member
    Reputation
    1
    Join Date
    Mar 2008
    Posts
    33
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by suicidity View Post
    None of you realized this from his first post?
    i dont think so ...

    and anybody with a 3.3.3a bot source /pm me plz i couldt make apocs tut to work

Page 1 of 2 12 LastLast

Similar Threads

  1. [ASCENT] please help me making my server public, configs inside!
    By vak in forum World of Warcraft Emulator Servers
    Replies: 10
    Last Post: 10-05-2007, 02:25 PM
  2. Help on making my Server Public!
    By Fuynuns93 in forum World of Warcraft Emulator Servers
    Replies: 4
    Last Post: 09-18-2007, 05:44 PM
  3. Replies: 10
    Last Post: 09-16-2007, 04:45 AM
  4. Help MMOwned make a new logo
    By Matt in forum Suggestions
    Replies: 77
    Last Post: 02-17-2007, 02:07 AM
  5. Help with making a grinding bot!
    By T.L. Cobra in forum World of Warcraft General
    Replies: 7
    Last Post: 02-02-2007, 01:42 AM
All times are GMT -5. The time now is 03:43 AM. 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