Lua do most of the strings? menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 24
  1. #1
    luciferc's Avatar Contributor
    Reputation
    90
    Join Date
    Jul 2008
    Posts
    373
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Lua do most of the strings?

    DEFAULT_CHAT_FRAME:AddMessage(\"\"); , JoinBattleground(0) <<Works

    CastSpellByName , Repopme do not?

    Makes no sense because its inside of wow calling mainthread,

    It also doesnt work for alot of unprotected functions.

    No i am not trying to call them /run Repopme() i am not that stupid :P

    Doing a C++ reinterpret_cast<tLua_Dostring>(0x0049AAB0) and it works.
    ( char * S, char * F, void * state );

    dostring("lol","lol",0); <<EX USAGE

    Anyways Ty for any help

    Lua do most of the strings?
  2. #2
    Apoc's Avatar Angry Penguin
    Reputation
    1388
    Join Date
    Jan 2008
    Posts
    2,750
    Thanks G/R
    0/13
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Calling it from the main thread?

  3. #3
    luciferc's Avatar Contributor
    Reputation
    90
    Join Date
    Jul 2008
    Posts
    373
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I said it wrong well it calls it via wow's main lua item thingy (dont know the name) so it isnt blocked by LuaProtection etc. so it shouldn't be an issue is what i mean.

    It works for the items above perfectly just doesnt work for Repopme() and all the other ones such as RunAsMacroText etc..

  4. #4
    Oowafas's Avatar Member
    Reputation
    14
    Join Date
    Jan 2009
    Posts
    31
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Case sensitivity issue with RepopMe() ? The CastSpell functions are protected. What other functions are you trying to use?
    Last edited by Oowafas; 07-09-2009 at 10:18 PM.

  5. #5
    luciferc's Avatar Contributor
    Reputation
    90
    Join Date
    Jul 2008
    Posts
    373
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I have been using protected functions with the bot including and yes i typed it correctly i just didnt for the post. I tryed it with /run and that worked.

    Btw calling the func means i can call the commands even if they are protected.

    Repopme() was just an example of an unprotected func that didnt work

  6. #6
    Nokia5800's Avatar Member
    Reputation
    -4
    Join Date
    Jun 2009
    Posts
    16
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ya im trying to call protected functions with Lua_DoString liek CastSpellByName and it doesnt do anything, only unprotected lua works and some dont... like LootSlot(1) doesnt work... I have the lua check nulled out, so I can call them manually but not with injection? wtf?

    any help?

  7. #7
    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)
    I don't recommend doing that. It's detected.

  8. #8
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1358
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Nokia5800 View Post
    Ya im trying to call protected functions with Lua_DoString liek CastSpellByName and it doesnt do anything, only unprotected lua works and some dont... like LootSlot(1) doesnt work... I have the lua check nulled out, so I can call them manually but not with injection? wtf?

    any help?

  9. #9
    Nokia5800's Avatar Member
    Reputation
    -4
    Join Date
    Jun 2009
    Posts
    16
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ok cypher could you tell me anything else besides that? Im using the asm..

    Code:
    Push 0
    Push String_Offset
    Push String_Offset
    MOV EAX,49AAB0
    Call Eax
    Add Esp, C
    Retn

    Not sure if im in the main thread or not... anyway to tell exactly which thead im in? dont trip plz just need a bit of help

  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)
    You're probably in your own thread. You need to update the TLS for one thing. This information is ALL OVER the site.

  11. #11
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1358
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/6
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Nokia5800 View Post
    [SNIP]

    Not sure if im in the main thread or not... anyway to tell exactly which thead im in? dont trip plz just need a bit of help

    Emphasis added.

    The fact you don't even know whether you're running in the main thread or not goes to show that pretty much all your 'work' is copypasta. Go back to basics, hit the books/tutorials, and come back when you actually UNDERSTAND what is happening, not just when you can copypasta and pray shit works.

  12. #12
    Nokia5800's Avatar Member
    Reputation
    -4
    Join Date
    Jun 2009
    Posts
    16
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Cypher View Post

    Emphasis added.

    The fact you don't even know whether you're running in the main thread or not goes to show that pretty much all your 'work' is copypasta. Go back to basics, hit the books/tutorials, and come back when you actually UNDERSTAND what is happening, not just when you can copypasta and pray shit works.
    No one wants to hear it man. Just take a chill pill, just because I dont study wow all day and night doesnt mean my work is 'copypasta' I built my own script, I had help since my bots dont use injection simple as that. I wanted to learn how to so I ask for help, get over yourself man. Everyone knows your a nerd.

  13. #13
    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)
    Actually, quite contrary. No one wants to hear YOU.

  14. #14
    Nesox's Avatar ★ Elder ★
    Reputation
    1280
    Join Date
    Mar 2007
    Posts
    1,238
    Thanks G/R
    0/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    *Grabs some popcorns and awaits the flame wars!* :devildance:

  15. #15
    Nokia5800's Avatar Member
    Reputation
    -4
    Join Date
    Jun 2009
    Posts
    16
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    true dat cuz

Page 1 of 2 12 LastLast

Similar Threads

  1. [Lua, SQL] Kil'tazoor, The Kobold Lord. (My first try at LUA!)
    By Zordin in forum World of Warcraft Emulator Servers
    Replies: 23
    Last Post: 06-11-2008, 03:19 PM
  2. Replies: 22
    Last Post: 05-29-2008, 03:52 PM
  3. most of the spammers say that they are sorry
    By Glupus in forum Community Chat
    Replies: 6
    Last Post: 09-03-2007, 02:52 PM
  4. Video Guides to MOST of the secret places in WoW
    By Matt in forum World of Warcraft Guides
    Replies: 4
    Last Post: 05-19-2006, 10:33 PM
All times are GMT -5. The time now is 08:11 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