[Release] TheLiciaZ src - LATEST CODEX SRC FIXED

Page 1 of 8 12345678 LastLast
Results 1 to 25 of 177
  1. #1
    Valued Member obamabf2 is offline
    MemberRank
    Jan 2014 Join Date
    Parnamirim (RioLocation
    123Posts

    sad [Release] TheLiciaZ src - LATEST CODEX SRC FIXED

    .....removed... Link
    Last edited by obamabf2; 04-07-16 at 11:40 PM. Reason: edit features


  2. #2
    Apprentice 666Slk is offline
    MemberRank
    Oct 2015 Join Date
    10Posts

    Re: [Release] TheLiciaZ src - LATEST CODEX SRC FIXED

    Nice work.

  3. #3
    Professional RageZone XxFuR4xX is offline
    MemberRank
    Jun 2013 Join Date
    ENG / FRLocation
    253Posts

    Re: [Release] TheLiciaZ src - LATEST CODEX SRC FIXED

    Hello, @obamabf2
    I hope the Warz universe you will not miss much. I support you, carry you well into the future. It was cool to see something on the forum from you.


  4. #4
    DeadZone The Unknown is offline
    MemberRank
    Feb 2014 Join Date
    CanadaLocation
    442Posts

    Re: [Release] TheLiciaZ src - LATEST CODEX SRC FIXED

    Good luck mate, maybe some people here could have use for this :)

  5. #5
    Enthusiast Luciano Carmona is offline
    MemberRank
    Nov 2013 Join Date
    39Posts

    Re: [Release] TheLiciaZ src - LATEST CODEX SRC FIXED

    Good job, Good luck, Obrigado irmao <3

  6. #6
    Valued Member Doky is offline
    MemberRank
    Oct 2014 Join Date
    BrazilLocation
    127Posts

    Re: [Release] TheLiciaZ src - LATEST CODEX SRC FIXED

    how to fly with UAV?
    I spawned, more no control =\

    thanks for source bro, very good.

  7. #7
    Valued Member obamabf2 is offline
    MemberRank
    Jan 2014 Join Date
    Parnamirim (RioLocation
    123Posts

    Re: [Release] TheLiciaZ src - LATEST CODEX SRC FIXED

    Quote Originally Posted by Doky View Post
    how to fly with UAV?
    I spawned, more no control =\

    thanks for source bro, very good.

    I gave start but finished the UAV, it spawn but not to use ...

  8. #8
    Professional RageZone XxFuR4xX is offline
    MemberRank
    Jun 2013 Join Date
    ENG / FRLocation
    253Posts

    Re: [Release] TheLiciaZ src - LATEST CODEX SRC FIXED

    I just have a little question?
    What and how to install the TheLiciaZDB.bak?


    SOLVE:
    I have found by myself. But thank still the person who allegedly wanted to help me!
    Last edited by XxFuR4xX; 06-04-16 at 03:17 PM.

  9. #9
    Valued Member AimZMMo is offline
    MemberRank
    Feb 2016 Join Date
    FranceLocation
    102Posts

    Re: [Release] TheLiciaZ src - LATEST CODEX SRC FIXED

    I tryed so many thing, im pretty seek today and my brain don't find the solution :'(
    Screenshot by Lightshot

  10. #10
    Novice WarzSix is offline
    MemberRank
    Mar 2016 Join Date
    2Posts

    Re: [Release] TheLiciaZ src - LATEST CODEX SRC FIXED

    Need codex-src ?

  11. #11
    Valued Member AimZMMo is offline
    MemberRank
    Feb 2016 Join Date
    FranceLocation
    102Posts

    Re: [Release] TheLiciaZ src - LATEST CODEX SRC FIXED

    Why it should need the codex src when " SRC https://mega.nz/#!wYdyyaRB!2QdFsLf55Cah1UlqNfp4qoQcgxIldBhTogIQXgfveKY "

  12. #12
    Enthusiast McGrumpy is offline
    MemberRank
    Aug 2015 Join Date
    39Posts

    Re: [Release] TheLiciaZ src - LATEST CODEX SRC FIXED

    wtf is this

  13. #13
    Account Upgraded | Title Enabled! askmyleg is offline
    MemberRank
    Dec 2014 Join Date
    Mery keyLocation
    855Posts

    Re: [Release] TheLiciaZ src - LATEST CODEX SRC FIXED

    Many thanks for a job good luck to you good people God loves you!

    P.s you have a website for him, or the controller?
    Last edited by askmyleg; 07-04-16 at 12:58 AM.

  14. #14
    Valued Member obamabf2 is offline
    MemberRank
    Jan 2014 Join Date
    Parnamirim (RioLocation
    123Posts

    Re: [Release] TheLiciaZ src - LATEST CODEX SRC FIXED

    Quote Originally Posted by AimZMMo View Post
    I tryed so many thing, im pretty seek today and my brain don't find the solution :'(
    Screenshot by Lightshot

    When creating the accounts they come banned is required to release an administrator manually ...


    Comment the following line in the function >> WZ_ACCOUNT_CREATE


    Comment line
    Code:
    update UsersData set AccountStatus=(AccountStatus+10000) where CustomerID=@CustomerID

  15. #15
    Valued Member Doky is offline
    MemberRank
    Oct 2014 Join Date
    BrazilLocation
    127Posts

    Re: [Release] TheLiciaZ src - LATEST CODEX SRC FIXED

    @obamabf2 screenshots does not work.
    when someone reported not go wwwroot folder / webinfestation / panel

    someone help me?

  16. #16
    Professional RageZone XxFuR4xX is offline
    MemberRank
    Jun 2013 Join Date
    ENG / FRLocation
    253Posts

    Re: [Release] TheLiciaZ src - LATEST CODEX SRC FIXED

    Quote Originally Posted by Doky View Post
    @obamabf2 screenshots does not work.
    when someone reported not go wwwroot folder / webinfestation / panel

    someone help me?
    Go SQL Navicat.
    Create Fonction: WZ_ACCOUNT_WEB_LOGIN
    and paste in:
    ALTER PROCEDURE [dbo].[WZ_ACCOUNT_WEB_LOGIN]
    @in_Email varchar(128),
    @in_Password varchar(64)
    AS
    BEGIN
    SET NOCOUNT ON;
    --AxGHD Report ScreenShot
    -- create user
    declare @MD5FromPwd varchar(100)
    exec FN_CreateMD5Password @in_Password, @MD5FromPwd OUTPUT
    -- get new CustomerID
    declare @CustomerID int
    declare @IsDeveloper int
    --AxGHD Report ScreenShot


    -- validate that email is unique
    if exists (SELECT email from Accounts WHERE email=@in_Email and MD5Password=@MD5FromPwd) begin
    select @CustomerID=CustomerID, @IsDeveloper=IsDeveloper from Accounts where email=@in_Email;
    select 0 as ResultCode, 'Account log-in successfuly' as ResultMsg, @CustomerID as CustomerID, @IsDeveloper as IsDeveloper;
    return;
    end
    --AxGHD Report ScreenShot
    select 2 as resultCode;
    return
    END
    --AxGHD Report ScreenShot

  17. #17
    Valued Member Doky is offline
    MemberRank
    Oct 2014 Join Date
    BrazilLocation
    127Posts

    Re: [Release] TheLiciaZ src - LATEST CODEX SRC FIXED

    Why map v3 terrian is bug?


    how to fix?

    - - - Updated - - -

    Quote Originally Posted by XxFuR4xX View Post
    Go SQL Navicat.
    Create Fonction: WZ_ACCOUNT_WEB_LOGIN
    and paste in:
    empty folder, no have screen shot's

  18. #18
    Valued Member obamabf2 is offline
    MemberRank
    Jan 2014 Join Date
    Parnamirim (RioLocation
    123Posts

    Re: [Release] TheLiciaZ src - LATEST CODEX SRC FIXED

    Quote Originally Posted by Doky View Post
    @obamabf2 screenshots does not work.
    when someone reported not go wwwroot folder / webinfestation / panel

    someone help me?

    If there is no screenshots folder in the bin folder, create a ... to be as follows ... bin / screenshots

  19. #19
    Valued Member Doky is offline
    MemberRank
    Oct 2014 Join Date
    BrazilLocation
    127Posts

    Re: [Release] TheLiciaZ src - LATEST CODEX SRC FIXED

    Quote Originally Posted by obamabf2 View Post
    If there is no screenshots folder in the bin folder, create a ... to be as follows ... bin / screenshots
    Masterserver.cfg

    [Report]
    ReportDir=C:\inetpub\WebInfestation\panel\

    screenshot don't show in folder
    C:\inetpub\WebInfestation\panel\

    I want from

  20. #20
    Novice Cleaner Sheep is offline
    MemberRank
    Apr 2015 Join Date
    1Posts

    Re: [Release] TheLiciaZ src - LATEST CODEX SRC FIXED


  21. #21
    My Status --> LukasCCB is offline
    MemberRank
    Apr 2013 Join Date
    CracolandiaLocation
    1,190Posts

    Re: [Release] TheLiciaZ src - LATEST CODEX SRC FIXED

    Quote Originally Posted by Doky View Post
    Masterserver.cfg


    [Report]
    ReportDir=C:\inetpub\WebInfestation\panel\


    screenshot don't show in folder
    C:\inetpub\WebInfestation\panel\

    to operate the screenshot from panel.
    do it.


    WarZ_Server.sln


    compile in DEBUG!


    Search:


    Code:
    void        OnPKT_C2S_ScreenshotData(DWORD peerId, const int size, const char* data);

    Change:


    Code:
    void        OnPKT_C2S_ScreenshotData(DWORD peerId, const int size, const char* data, const char* FoundPlayer);

    Search:


    Code:
    void ServerGameLogic::OnPKT_C2S_ScreenshotData(DWORD peerId, const int size, const char* data)
    {
        char    fname[MAX_PATH];
        char plrName[64]={0};
    
    
        const peerInfo_s& peer = GetPeer(peerId);
        if(peer.player == NULL) 
        {
            return;
        }
        else
        {
            //_mkdir("screenshots");
            sprintf(fname, "screenshots\\CID-%d_%s_%x.jpg", peer.player->profile_.CustomerID, peer.player->userName, GetTickCount());
        }
    
    
        r3dOutToLog("peer%02d received screenshot, fname:%s\n", peerId, fname);
        LogCheat(peerId, PKT_S2C_CheatWarning_s::CHEAT_D3DCHEAT, false, "Hack Detect or Send Report", "Screenshot na pasta!"); // d3d cheat
    
    
        FILE* f = fopen(fname, "wb");
        if(f == NULL) {
            LogInfo(peerId, "SaveScreenshot", "unable to save fname:%s", fname);
        }
        else
        {
            fwrite(data, 1, size, f);
            fclose(f);
        }
    
    
        peer.player->security_screenshotRequestSentAt = 10; // reset
    
    
    /*#ifdef ENABLE_GAMEBLOCKS
        if(g_GameBlocks_Client && g_GameBlocks_Client->Connected())
        {
            GameBlocks::Event_PlayerScreenShotJpg_Send(g_GameBlocks_Client, g_GameBlocks_ServerID, GameBlocks::GBPublicPlayerId(uint32_t(peer.player->profile_.CustomerID)), data, size);
        }
    #endif*/
        return;
    }

    Change:


    Code:
    void ServerGameLogic::OnPKT_C2S_ScreenshotData(DWORD peerId, const int size, const char* data, const char* FoundPlayer)
    {
    	char	fname[MAX_PATH];
    	char test[512];
    
    
    	const peerInfo_s& peer = GetPeer(peerId);
    
    
    	int isFoundPlayer = 0;
    	for(int i=0; i<MAX_NUM_PLAYERS; ++i)
    	{
    		obj_ServerPlayer* plr = gServerLogic.GetPlayer(i);
    
    
    		sprintf(test,"%s",FoundPlayer);
    
    
    		if(plr && strcmp(strupr(plr->loadout_->Gamertag),strupr(test)) == 0)
    		{
    			isFoundPlayer = plr->profile_.CustomerID;
    			break;
    		}
    	}
    
    
    	if (strcmp(FoundPlayer,"AnticheatSystemAuto") == 0)
    		isFoundPlayer = 999;
    
    
    	if (isFoundPlayer == 0)
    		return;
    
    
    	if(peer.player == NULL)
    	{
    		return;
    	}
    	else
    	{
    		const char* group      = "Report";
    
    
    		if(_access(configFile, 0) != 0) {
    			r3dError("can't open config file %s\n", configFile);
    		}
    
    
    		char ReportDir[512];
    		r3dscpy(ReportDir,r3dReadCFG_S(configFile, group, "ReportDir", ".\\"));
    
    
    		char Directory[512]="";
    		sprintf(Directory,"%sReports\\%i\\",ReportDir,isFoundPlayer);
    		_mkdir(Directory);
    
    
    		time_t     t;
    		time(&t);
    
    
    		char Date[512];
    		r3dscpy(Date,ctime(&t));
    		Date[3]='_';
    		Date[7]='_';
    		Date[10]='_';
    		Date[13]='_';
    		Date[16]='_';
    		Date[19]='_';
    
    
    		sprintf(fname, "%sDate_%.24s_GameServer_%d_PlayerScreen_of_CID_%d_%x.jpg",Directory,Date,ginfo_.gameServerId,peer.player->profile_.CustomerID,GetTickCount());
    		//sprintf(fname, "%sJPG_%d_%d_%d_%x.jpg",Directory,ginfo_.gameServerId, peer.player->profile_.CustomerID, peer.player->loadout_->LoadoutID, GetTickCount());
    	}
    
    
    	r3dOutToLog("peer%02d received screenshot, fname:%s\n", peerId, fname);
    
    
    	FILE* f = fopen(fname, "wb");
    	if(f == NULL) {
    		LogInfo(peerId, "SaveScreenshot", "unable to save fname:%s", fname);
    	}
    	else
    	{
    		fwrite(data, 1, size, f);
    		fclose(f);
    	}
    
    
    	peer.player->security_screenshotRequestSentAt = 0; // reset
    
    
    /*#ifdef ENABLE_GAMEBLOCKS
    	if(g_GameBlocks_Client && g_GameBlocks_Client->Connected())
    	{
    		GameBlocks::Event_PlayerScreenShotJpg_Send(g_GameBlocks_Client, g_GameBlocks_ServerID, GameBlocks::GBPublicPlayerId(uint32_t(peer.player->profile_.CustomerID)), data, size);
    	}
    #endif*/
    	return;
    }

    Search:


    Code:
    OnPKT_C2S_ScreenshotData(peerId, n.dataSize, (char*)packetData + sizeof(n));

    Change:


    Code:
    OnPKT_C2S_ScreenshotData(peerId, n.dataSize, (char*)packetData + sizeof(n), n.nickname);


    Last edited by LukasCCB; 07-04-16 at 04:29 PM.

  22. #22
    Apprentice Yorkz is offline
    MemberRank
    Dec 2014 Join Date
    5Posts

    Re: [Release] TheLiciaZ src - LATEST CODEX SRC FIXED

    What is default DB name??

    Cannot restore DB!
    Last edited by Yorkz; 07-04-16 at 07:03 PM.

  23. #23
    Account Upgraded | Title Enabled! askmyleg is offline
    MemberRank
    Dec 2014 Join Date
    Mery keyLocation
    855Posts

    Re: [Release] TheLiciaZ src - LATEST CODEX SRC FIXED

    You can implement here? FairFight

  24. #24
    Apprentice wqwqwq5555 is offline
    MemberRank
    Aug 2014 Join Date
    11Posts

    Re: [Release] TheLiciaZ src - LATEST CODEX SRC FIXED

    I will change my language , however .

    Screenshot by Lightshot

  25. #25
    Apprentice mrlonely095 is offline
    MemberRank
    May 2015 Join Date
    20Posts

    Re: [Release] TheLiciaZ src - LATEST CODEX SRC FIXED

    need help !

    All api user password dbname correct but i got DC when login map

    000193.810| CAsyncApiWorker 0 executing CJobUpdateChar[1000000] 07AC6998000193.839| WO_API: returned http500
    000193.839| !!!! UpdateCharThread failed, code: 8, ans:
    000193.841| CAsyncApiWorker 0 job CJobUpdateChar[1000000] 07AC6998 failed, retrying 1/5
    000193.855| WO_API: returned http500
    000193.856| !!!! UpdateCharThread failed, code: 8, ans:
    000193.857| CAsyncApiWorker 0 job CJobUpdateChar[1000000] 07AC6998 failed, retrying 2/5
    000193.874| WO_API: returned http500
    000193.875| !!!! UpdateCharThread failed, code: 8, ans:
    000193.876| CAsyncApiWorker 0 job CJobUpdateChar[1000000] 07AC6998 failed, retrying 3/5
    000193.894| WO_API: returned http500
    000193.894| !!!! UpdateCharThread failed, code: 8, ans:
    000193.895| CAsyncApiWorker 0 job CJobUpdateChar[1000000] 07AC6998 failed, retrying 4/5
    000193.907| WO_API: returned http500
    000193.907| !!!! UpdateCharThread failed, code: 8, ans:
    000193.909| CAsyncApiWorker 0 finished CJobUpdateChar[1000000] 07AC6998
    000193.909| !!!! CAsyncApiWorker 0 job CJobUpdateChar[1000000] 07AC6998 failed
    000193.910| CAsyncApiWorker 0 job CJobUpdateChar[1000000] 07AC6998 failed
    000193.911| AddForcedJob CID:1000000 CJobAddLogInfo
    please help



Page 1 of 8 12345678 LastLast

Advertisement