Page 1 of 2 12 LastLast
Results 1 to 10 of 74

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1
    TemTriss
    TemTriss is offline
    Senior Member TemTriss's Avatar
    Join Date
    2010 May
    Location
    Saint-Pitersburg
    Posts
    204
    Thanks Thanks Given 
    47
    Thanks Thanks Received 
    82
    Thanked in
    3 Posts
    Rep Power
    0

    darkREQ Insider + MM ReqBot Start Script.

    Изменения в скрипте пишу на ходу, если есть косяки, пишите поправлю.(хотя по моему накосячить там не реально)
    Для начала копируем библиотеки в папку с рек ботом.
    Далее открываем блокнот(ну или любой другой текстовый редактор) и копируем этот код
    Code:
     ----============================================================================= 
    -- Requiem game ReqBot service loader script 
    -- 
    --============================================================================= 
     
    --[[ 
       Loads the Requiem game client "Requiem.exe" with the ReqBot service DLL 
       loaded. 
     
       This script needs to be passed the game's directory as an argument. 
       I.E. "C:GamesRequiem" 
       Normally setup in a shortcut to call this script from MM with the path 
       from the Windows desktop. 
     
       An optional 2nd argument "-RU" to indicate the Russian version, or "-GB" 
       to indicate Global Sea server version. 
       By default assumes USA server version. 
    --]] 
     
    ------------------------------------------------------------------------------- 
     
    -- C function printf with fore and background colors 
    local function printfc(foreground, background, ...) 
      local szText = nil 
      local function wrapper(...) 
       console.SetColor(foreground, background) 
       io.write(string.format(...)) 
       console.SetColor(console.WHITE, console.BLACK) 
      end 
     
      local status, err = pcall(wrapper, ...) 
      if not status then 
       error(err, 2) 
      end 
    end 
     
    -- Get MD5 hash for file, nil on open failure 
    local function GetFileHash(szFile) 
      local bufsize = (64 * 1024) 
      local hFile = io.open(szFile, "rb") 
      if hFile then 
       local MyMD5 = hash.MD5() 
     
       local szFileData = hFile:read(bufsize) 
       while szFileData do 
         MyMD5:Add(szFileData) 
         szFileData = hFile:read(bufsize) 
       end 
     
       hFile:close() 
       MyMD5:Finalize() 
       return(tostring(MyMD5)) 
      else 
       return nil, "failed to open file" 
      end 
    end 
     
    -- Show an error box and exit 
    local function ErrorBox(szError) 
      printfc(console.BRIGHTYELLOW, console.RED, "nn ====== Error ======n"..szError) 
      gui.MessageBox("Game loader Error!", szError, bit.bor(gui.MB_OK, gui.MB_ICONHAND)) 
      os.exit(1) 
    end 
     
    ------------------------------------------------------------------------------- 
     
    print() 
    printfc(console.BRIGHTYELLOW, console.BLACK, " ====================== Game Loader ======================") 
     
     
    -- #1 
    -- First argument needs to be the game directory 
    -- Requiem doesn't have a path location in the windows registry so the user must 
    -- supply it. 
    -- Argument #1 is the full script path, #2 is the game path 
    if ((#arg < 2) or (type(arg[2]) ~= "string")) then 
      ErrorBox("Need to pass the game directory as an argument!nnI.E. "MacroMonkey.exe LoadGame.mms C:\Games\Requiem"  nNormally setup as a desktop shortcut or batch file.nSee ReqBot "ReadMe.txt"") 
    end 
     
    -- #2 2nd argument optional server version 
    -- USA version by default 
    local VersionIndex = 1 
    if arg[3] then 
      if (string.upper(arg[3]) == "-RU")   then 
       VersionIndex = 2 
      elseif (string.upper(arg[3]) == "-GB") then 
       VersionIndex = 3 
      end 
      print() 
      printfc(console.BRIGHTMAGENTA, console.BLACK, "<%s server version>n", ({"USA", "Russian", "Global Sea"})[VersionIndex]) 
    end 
     
    local szServiceDLL = ({"RequiemSrvc.dll", "RequiemSrvcRU.dll", "RequiemSrvcGB.dll"})[VersionIndex] 
    local szDLLPath  = string.gsub(arg[1], "LoadClient.mms", szServiceDLL) 
    local szGamePath  = arg[2] 
    local szClientPath = szGamePath.."\system\Requiem.exe" 
    local szInsDll = "DarkREQ.dll" 
    local szInsPath  = szGamePath.."\system\".. szInsDll
    print() 
    printfc(console.BRIGHTGREEN, console.BLACK, "GP: "%s"n", szGamePath) 
    printfc(console.BRIGHTGREEN, console.BLACK, "CP: "%s"n", szClientPath) 
    printfc(console.BRIGHTGREEN, console.BLACK, "DP: "%s"n", szDLLPath) 
    printfc(console.BRIGHTGREEN, console.BLACK, "DarREQInsider: "%s"n",szInsPath) 
    -- #3 
    -- The ReqBot service DLL is specific to client version 
    -- The DLL version must match the relative current client. 
     
    -- Get client hash 
    dofile("ClientVersion.inc") 
    local szClientMD5 = aClientHash[VersionIndex] 
    assert(szClientMD5) 
    -- Compare with actual 
    local szReadHash = GetFileHash(szClientPath) 
    if szReadHash then 
      if (szReadHash ~= szClientMD5) then 
       ErrorBox("Client version check failed! You probably need a ReqBot update. nnDownload the latest service DLL version.nSee ReqBot "ReadMe.txt"") 
      end 
    else 
      ErrorBox("Can't find game client with path: ""..szClientPath..""!nnGame path argument is incorrect, or client EXE is missing..nSee ReqBot "ReadMe.txt"") 
    end 
     
    -- #4 
    -- Create game process with service DLL injected.. 
    local szGameArgs = 
    ({ 
      " 128.241.93.161 -FromLauncher 0/0 0 0 1 3 0", -- USA 
      " 109.105.144.2 -FromLauncher 0/0 0 0 7 2 0",  -- Russia 
      " 112.175.139.3 -FromLauncher 0/0 0 0 1 4 0",  -- Global Sea 
    })[VersionIndex] 
    print("Loading..") 
    local Handle = process.Create(szClientPath, szGameArgs, szGamePath, szDLLPath) 
    if not Handle then 
      ErrorBox("Failed to create client process! nnProbably couldn't find the service DLL.  nSee ReqBot "ReadMe.txt"") 
      os.exit(1) 
    end 
    print("Inject dInsider.dll...") 
    -- Иньектим ещё 1 библиотеу. 
    if (process.InjectDLL(Handle, szInsPath ) == false) then 
      ErrorBox("Failed to inject DLL!") 
      os.exit(1) 
    end 
    -- Success, bail out 
    print("nnnnnSuccess") 
    time.Sleep(0.25) 
    --print("n- Press a key to exit -") 
    --console.KeyPause()
    [attachment=0]LoadClient.zip[/attachment]

    Такс скрипт я поменял, и теперь нужно кидать инсайдер в папку река паку system(так же как и для нормального запуска инсайдера)
    В тестах наткнулся на проблемку. Хз как решить) попробуйте может она только у меня. Пишет что невозможно применить данный патч. Проверяйте =)

    Please register or login to download attachments.

    ADACH, Sirmabus, DWAR the BESSSSSSSSSST
    <3 MM REQBOT [Please, register to view links]
    love is in the air, blinding me with smoke, you are the air i breathe, when i choke.
    butterflies in the jar
    captured my heart, goodies in the basket, stuttering the ways, i love you honey.
    insect in your kiss.
    You are my sunshine.
    Get out of my rowboat, Get out of my rowboat, © Coal Chamber

  2. The Following 8 Users Say Thank You to TemTriss For This Useful Post:


  3. #2
    pohkak
    pohkak is offline
    Member-in-training pohkak's Avatar
    Join Date
    2010 Dec
    Posts
    171
    Thanks Thanks Given 
    29
    Thanks Thanks Received 
    10
    Thanked in
    10 Posts
    Rep Power
    0
    а можно ли выставить на этом форуме другую версию бота....спрашиваю так как не я ево создатель и сам бот содержит в себе ссылку на сайт создателя (бот совершенно бесплатный и намного проще в обращении чем макромонки )

  4. #3
    Dwar
    Dwar is offline
    Veteran Dwar's Avatar
    Join Date
    2010 Mar
    Posts
    2,222
    Thanks Thanks Given 
    211
    Thanks Thanks Received 
    2,230
    Thanked in
    292 Posts
    Rep Power
    10
    pohkak
    Оформляйте соответствующим образом топик в разделе с ботами.
    Please, post your questions on forum, not by PM or mail

    I spend my time, so please pay a little bit of your time to keep world in equilibrium

  5. #4
    balbes
    balbes is offline
    Guest
    Join Date
    2010 Dec
    Posts
    2
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0
    Доброе Утро страна)) спасибо огромное за тему, вы вот только подскажите что вот это за ошибка? и где достать инсайдер и DarkREQ.dll??? всю тему прочитал, но не увидил не одной ссылки на инсайдер, скрипт скачал вроде все поставил как по теме, вот только ругается на даркрек... что делать?? где скачать?

    ---------- Post added at 07:28 AM ---------- Previous post was at 07:13 AM ----------

    да кстати, забыл спросить, этот бот на какой сервер настроен? на русский(requiem-online.ru) или на корейский?

    ---------- Post added at 12:42 PM ---------- Previous post was at 07:28 AM ----------

    Dwar подскажи что это за ошибка?
    Type: "Run Time"
    Error: cannot open ClientVersion.inc: No such file or directory

  6. #5
    balbes
    balbes is offline
    Guest
    Join Date
    2010 Dec
    Posts
    2
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0
    Good morning the country)) thanks huge for a theme, you here only prompt that here it for an error? And where to get инсайдер and DarkREQ.dll??? All theme has read, but not увидил not one reference on инсайдер, the script has downloaded like all has put as on a theme, here only swears on даркрек... What to do?? Where to download?

    ---------- Post added at 07:28 AM---------- Previous post was at 07:13 AM----------

    Yes by the way, has forgotten to ask, this boat on what server is adjusted? On Russian (requiem-online.ru) or on the Korean?

    ---------- Post added at 12:42 PM---------- Previous post was at 07:28 AM----------

    Dwar prompt that it for an error?
    Type: "Run Time"
    Error: cannot open ClientVersion.inc: No such file or directory

    ---------- Post added at 01:54 PM ---------- Previous post was at 01:48 PM ----------

    Двар у меня к тебе огромное предложение, объясню только в личку вот моя ася 281328010

  7. #6
    Romio
    Romio is offline
    Guest
    Join Date
    2010 Dec
    Posts
    2
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0
    Извиняюсь что пишу не в той теме, просто не нашол больше куда написать. Меня долго не было тут и когда вернулся увидел что darkREQ Insider больше не обновляется, но вместо не го Dwar говорил будет какая то другая программа. Можно ли узнать есть ли уже эта программа и если да то как называется, где можно скачать, и что надо сделать чтоб её получить(на тот случай если она не в свободном доступе)? Буду очень благодарен за ответ и помощь.

  8. #7
    Dwar
    Dwar is offline
    Veteran Dwar's Avatar
    Join Date
    2010 Mar
    Posts
    2,222
    Thanks Thanks Given 
    211
    Thanks Thanks Received 
    2,230
    Thanked in
    292 Posts
    Rep Power
    10
    At this moment there is no valid darkReq.
    darkReq will be resurrected after releasing Aika bot.
    Please, post your questions on forum, not by PM or mail

    I spend my time, so please pay a little bit of your time to keep world in equilibrium

  9. #8
    JProGamerCity
    JProGamerCity is offline
    New member
    Join Date
    2011 May
    Location
    Philippines
    Posts
    12
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0
    What Bot or any cheat that i can use for Requiem US? I am willing to donate for this... THANKS!

  10. #9
    Blaablubb
    Blaablubb is offline
    New member
    Join Date
    2011 May
    Posts
    5
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    0
    Thanked in
    0 Posts
    Rep Power
    0
    Quote Originally Posted by Dwar View Post
    At this moment there is no valid darkReq.
    darkReq will be resurrected after releasing Aika bot.
    okey i hope u will patch up darkREQ fast thanks for all Dwar

  11. #10
    mrbob
    mrbob is offline
    New member
    Join Date
    2011 Jun
    Posts
    7
    Thanks Thanks Given 
    0
    Thanks Thanks Received 
    1
    Thanked in
    1 Post
    Rep Power
    0
    Жаль что бота нельзя купить =(

Page 1 of 2 12 LastLast

Posting Permissions

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