[HELP]Game Modes

Junior Spellweaver
Joined
Apr 5, 2012
Messages
147
Reaction score
5
Hello guys I want to know how to add more Game Modes like GAMEWORLD, STRONGHOLD someone knows how to do it?
GMkidink - [HELP]Game Modes - RaGEZONE Forums
 

Attachments

  • mod - [HELP]Game Modes - RaGEZONE Forums
    mode.webp
    5.6 KB · Views: 175
Re: [HELP] WarZ in Xampp

check if you launcher is there in your WZ/Updater folder where you put the *.bin (WZ/updater/yourlauncher)
 
Upvote 0
Re: [HELP] WarZ in Xampp

it works but now when I input the user account not connect is like the api doesn't connect to the SQL DB any idea?
logs

000002.308| WO_API: returned http500
000002.308| Login FAILED, code: 8
 
Upvote 0
Re: [HELP] WarZ in Xampp

the error means you launcher doesn't connect to your api check you httpd.conf api address here is my module, change the red words for your api address

Code:
LoadModule aspdotnet_module modules/mod_aspdotnet.so

# Use the asp.net handler for all common ASP.NET file types
AddHandler asp.net asax ascx ashx asmx aspx axd config cs csproj \
licx rem resources resx soap vb vbproj vsdisco webinfo

<IfModule mod_aspdotnet.cpp>

    # Mount the sampleapp example application
    AspNetMount [COLOR="#FF0000"]/Thelastsoul/api[/COLOR] "[COLOR="#FF0000"]C:/xampp/htdocs/Thelastsoul/api[/COLOR]"

    # Map all requests for /sampleapp to the sampleapp application files
    Alias [COLOR="#FF0000"]/Thelastsoul/api[/COLOR] "[COLOR="#FF0000"]C:/xampp/htdocs/Thelastsoul/api[/COLOR]"

    # Allow asp.net scripts to be executed in the sampleapp example
    <Directory "[COLOR="#FF0000"]C:/xampp/htdocs/Thelastsoul/api[/COLOR]">
        Options FollowSymlinks ExecCGI
        Order allow,deny
        Allow from all
        DirectoryIndex Default.htm Default.html Default.aspx
    </Directory>

    # For all virtual ASP.NET webs, we need the aspnet_client files 
    # to serve the client-side helper scripts.
    # NOTICE "C:/Windows/" -- change to %systemroot%
    # "C:/Windows/" for WinXP, "C:/WINNT/" for Win2k
    AliasMatch /aspnet_client/system_web/(\d+)_(\d+)_(\d+)_(\d+)/(.*) \
"C:/Windows/Microsoft.NET/Framework/v$1.$2.$3/ASP.NETClientFiles/$4"

    # NOTICE "C:/Windows/" -- change to %systemroot%
    # "C:/Windows/" for WinXP, "C:/WINNT/" for Win2k
    <Directory "C:/Windows/Microsoft.NET/Framework/v*/ASP.NETClientFiles">
        Options FollowSymlinks
        Order allow,deny
        Allow from all
    </Directory>

</IfModule>
 
Last edited:
Upvote 0
Back