Jump to content
ZLOFENIX Games

Despo

Advanced User
  • Content Count

    428
  • Joined

  • Last visited

Posts posted by Despo

  1. Its happening :D
    Anyways,can i install files from BF4 ZloEmu in my origin ones and wait for Zlorigin?
    If i could get access to Open Beta,that would be good :)
    Also heard from thetruestarr1337 that Closed Beta will use Beta files :O
    Or is it fake?

    Install BF4 with all DLCs (including Night Map) directly from Origin and join a normal game at least once.

    No we won't use any beta-files...

  2. hi...thx u fenix

    i have a question...what about battlefield 4 commander??can we use this app??

    and a silly question,when u guys release the game?this month or next month??plzzzz answer..

    Currently commander mode is not implemented (yet).

    Using the mobile-app would also require to reverse the app and patch it to target fenix's master. This is not planned.

    ETA: "no ETA"

    (although i may look into that later)

  3. zloLauncherCLI v1.2.3

     

    A very small (~50KiB without icon) command line interface (CLI) launcher for both BF3 and BF4. Uses the most recent version of the zloAPI (BF3 v7.0.4, BF4 v2.0.1).

    This project's main propose is to serve as an alway-up-to-date minimal Client- and Server-Launcher and as a startingpoint for everybody who want's to code their own launcher.

    Fully opensource (C#): https://bitbucket.org/_despo/zlolaunchercli

    Everyone can contribute to the project. Code is rather messy, if you want to clean it up or add functions I would be glad to add them into master.


    015zsg5.png

    Features

    • Load API (BF3 & BF4)
    • Login (BF3 & BF4)
    • List all servers (BF3 & BF4)
    • Select server (BF3 & BF4)
    • Basic server info (BF3 & BF4)
    • Singleplayer (BF3 & BF4)
    • Ping server (BF3 & BF4)
    • Basic player stats (BF3 & BF4)
    • Connect to server (BF3 & BF4)
    • ServerLauncher with automatic refresh and reconnect and ErrorLogger (BF3)
    • DLL-Updater/Downloader with automatic restart (BF3 & BF4)

    Usage

    There are 15 commands of which you can pass 5 via command line (see below). Enter help to get a list.

    select, ping, info and connect can either be used with the server ID you want to target or without an argument in which case the previously selected ID will be used (if any).

    1. Load a dll: bf3 / bf4
    2. Login with mail-address and password from zloemu
    3. List servers: servers or play singleplayer: single
    4. (optional) Select a server: select X
    5. (optional) Print info: info / info X
    6. (optional) Ping the server: ping / ping X
    7. Connect to the server: connect / connect X

     

    Calling launcher from command line

    You can pass 6 commands: -bf3 or -bf4 -login mailaddress password -connect serverID or -single -autoclose

    Login,  connect and autoclose are optional. This will not work if your password starts with -, contains whitespaces or regular expressions like \r or \n

     

    ServerLauncher

    Either do it manually by loading a DLL with bf3 / bf4 and starting ServerMode with server, or call it from commandline/batch. For example: copy DLL and launcher into your server-directory and insert following line at the beginning of your _StartServer.bat:

    start zloLauncherCLI.exe -bf3 -server
    

    The status of your server(s) will auto-update. If you get disconnected from master-server launcher will automatically try to reconnect your server after 15seconds. Be aware that even if the server connects back immediately, it will still take some time (1-3 minutes) till you get back IN_GAME. Exit ServerMode by pressing [CTRL] + [E] on your keyboard.

     

    Future

    • ServerLauncher for BF4
    • autorestart server if server crashes/hangs
    • Cleanup

     

     
     

     

    Download v1.2.3:

    https://bitbucket.org/_despo/zlolaunchercli/downloads/zloLauncherCLI_v1.2.3.0.exe

  4. Nichts da mit fauler haut wa smile.gif

     

    Mal schauen ob du das mit den Tags bzw mit den Dogtags sexy gelöst bekommst laugh.gif

     

    Na wenn ich schon mal Uni-befreit bin, dann muss ich mich auch produktiv verhalten :D

  5. Instead of pinging a server permanently you should better check your internet connection itself:

    AdlibRegister("CheckInet",10000)
    
    While True
        Sleep(1000)
    WEnd
    
    Func CheckInet()
    	If Not _WinAPI_IsInternetConnected() Then
    		MsgBox(64, "", "Internet connection was lost!")
    		AdlibUnRegister("CheckInet")
    	EndIf
    EndFunc
    
    
    
    ; #FUNCTION# ====================================================================================================================
    ; Author.........: Yashied
    ; Modified.......: jpm
    ; ===============================================================================================================================
    Func _WinAPI_IsInternetConnected()
    	;If Not __DLL('connect.dll') Then Return SetError(103, 0, 0)
    
    	Local $aRet = DllCall('connect.dll', 'long', 'IsInternetConnected')
    	If @error Then Return SetError(@error, @extended, 0)
    	If Not ($aRet[0] = 0 Or $aRet[0] = 1) Then ; not S_OK nor S_FALSE
    		Return SetError(10, $aRet[0], False)
    	EndIf
    
    	Return Not $aRet[0]
    EndFunc   ;==>_WinAPI_IsInternetConnected
    
  6. Despo, thank you for the video, you really saved me. Showed that in the right hands G3A3 works wonders. By the way, please write the name of the song.

    Ah sorry wasn't checking this thread.

    I hope you are unbanned now. Maybe we'll meet ingame again.

  7. No idea what you guys are talking.

     

    Anyway here's the video. I played 2 rounds yesterday to sort out the G3A3 capability.

    It has a recoil and spread even with a bipod but you can still do headshots in fullauto over a great range easily.

     

     

    I don't think that ASHOT was cheating.

     


    Thanks, dude. Me and my friend with the nickname Desu were with you in the same squad a few weeks ago . We played on the Wake Island map.

    I can remember that.

×
×
  • Create New...