[HELP] About Doom mmo v3 three question
Hi,
1) We are using Doom MMO v3 source. But when I WarZ build , compile is normal succesfully but Studio.exe not getting in the bin (Only compiling Infestation.exe). Also vehicles not spawns colorado for normal players.
2) Cliffside not spawn zombies and /zspawn is getting server crash. We tried another studio build this level and delete all zombie spawn and re-build navigation but problem still continue.
3) How I can lock button Strongholds , Private , Hardcore and My Servers. I want only clickable Official and Premium Servers.
Thanks.
Re: [HELP] About Doom mmo v3 three question
1) Add lootbox vehicule ( in database )
Re: [HELP] About Doom mmo v3 three question
Quote:
Originally Posted by
BumHurt
Hi,
1) We are using Doom MMO v3 source. But when I WarZ build , compile is normal succesfully but Studio.exe not getting in the bin (Only compiling Infestation.exe). Also vehicles not spawns colorado for normal players.
2) Cliffside not spawn zombies and /zspawn is getting server crash. We tried another studio build this level and delete all zombie spawn and re-build navigation but problem still continue.
3) How I can lock button Strongholds , Private , Hardcore and My Servers. I want only clickable Official and Premium Servers.
Thanks.
1) Add Vehicle Lootdata
2)Send r3dlog
3)Edit FrontEndWarZ.cpp
Re: [HELP] About Doom mmo v3 three question
3)
search :
Quote:
Scaleform::GFx::Value var[20];
// init browse channel buttons
Quote:
{
var[0].SetBoolean(gUserProfile.IsTrialAccount() || gUserProfile.ProfileData.isDevAccount>0); // trial channel
var[1].SetBoolean(!gUserProfile.IsTrialAccount()); // official channel
var[2].SetBoolean(!gUserProfile.IsTrialAccount()); // private servers
var[3].SetBoolean(gUserProfile.ShopPremiumAcc>0 || gUserProfile.ProfileData.PremiumAcc>0); // premium servers (enable only if premium is available for sale or player alreayd has premium account
var[4].SetBoolean(!gUserProfile.IsTrialAccount()); // strongholds
var[5].SetBoolean(!gUserProfile.IsTrialAccount()); // public test environment
var[6].SetBoolean(!gUserProfile.IsTrialAccount()); // veteran servers
gfxMovie.Invoke("_root.api.Main.BrowseGamesChannelsAnim.initButtons", var, 7);
}
Exemple lock server veteran :
Quote:
Scaleform::GFx::Value var[20];
// init browse channel buttons
{
var[0].SetBoolean(gUserProfile.IsTrialAccount() || gUserProfile.ProfileData.isDevAccount>0); // trial channel
var[1].SetBoolean(!gUserProfile.IsTrialAccount()); // official channel
var[2].SetBoolean(!gUserProfile.IsTrialAccount()); // private servers
var[3].SetBoolean(gUserProfile.ShopPremiumAcc>0 || gUserProfile.ProfileData.PremiumAcc>0); // premium servers (enable only if premium is available for sale or player alreayd has premium account
var[4].SetBoolean(!gUserProfile.IsTrialAccount()); // strongholds
var[5].SetBoolean(!gUserProfile.IsTrialAccount()); // public test environment
//var[6].SetBoolean(!gUserProfile.IsTrialAccount()); // veteran servers
gfxMovie.Invoke("_root.api.Main.BrowseGamesChannelsAnim.initButtons", var, 7);
}
:)
Re: [HELP] About Doom mmo v3 three question
3) Done. Thanks
1) I tried Lootdata (added 101412 , 101413 and 101414). But when i join server , getting dc after loaading screen
Re: [HELP] About Doom mmo v3 three question
Re: [HELP] About Doom mmo v3 three question
Okay i send r3dlog after go home , because current PC have too low hardware :)
Also servers button are locked , but "my servers" still unlocked how to lock this ?
Re: [HELP] About Doom mmo v3 three question
Re: [HELP] About Doom mmo v3 three question
Quote:
Originally Posted by
Oosmar02
I tried already :) but compile error. Anyway other way i can set rent server 9999999 gc price :) but how ?
And create new character i saw unlock other survivors 9999999 price , how i can set price ?
Re: [HELP] About Doom mmo v3 three question
Add the price character in " Items_Gear"
Re: [HELP] About Doom mmo v3 three question
Okay when i cliffside with edited different studio and open server this logss :
Code:
00000.088| Getting shop data
000000.096| Reading game rewards
000000.099| Loading armory config
000000.112| Reading loot boxes
000000.120| Loot boxes data updated
000000.121| Loading A.I. tactics config
000000.122| Loading A.I. brain profiles
000000.122| Starting game server
000000.122| SetHomeDir: Levels\WZ_Cliffside
000000.122| Starting voice
000000.123| Server lib version: 3.0.2 [Build: 1342695053] SDK
000000.123| VOICE:[4] 2015-06-11 12:21:34.623632|INFO |ServerLibPriv | | TeamSpeak 3 Server 3.0.2 (2012-07-19 10:50:53) SDK
000000.138| VOICE:[2] 2015-06-11 12:21:34.639633|WARNING |Accounting | | Unable to find valid license key, falling back to limited functionality
000000.639| Read keypair 'MHADAgeAAgEgAiEAk6aaoD6QF0Kl47eBDwXqjNCY9Huw+I1sRTdBpPFdJtACIQDWzz7tjCSZfwh+UNqeYJMv/10mJQ/9EIJqdevD5urtkwIhAMtsVyMPhtw/pXILbFr2rZjXSkSK8B0FmgyzQ2TwnBw0' from file 'ts_keypair_34511.txt'.
000000.640| Creating virtual server with 2 slots
000000.645| VOICE:[4] 2015-06-11 12:21:35.146662|INFO |VirtualServer | 1| listening on 0.0.0.0:34511
000000.645| VOICE:[4] 2015-06-11 12:21:35.146662|INFO |VirtualSvrMgr | | addServer() VirtualServer(1) started
000000.646| Server running
000000.646| voip: !!!!!! Channel 1 edited by 0 on virtual server 1
000001.128| TERRAIN: LOADING Levels\WZ_Cliffside\TERRAIN
000001.128| !!! r3d_assert '0' at ..\..\..\src\EclipseStudio\Sources\ObjectsCode\Nature\obj_Terrain.cpp line 76
000001.129| !!! crashed, thread 3608
000001.129| Creating minidump at logss\GS_100000679db4e.dmp
000001.213| Minidump created.
Also how i compile doom mmo studio because whern i warz compile studio.exe not getting.
Re: [HELP] About Doom mmo v3 three question
You have change this map or saving with or without modification with an other editor ?
Re: [HELP] About Doom mmo v3 three question
Quote:
Originally Posted by
bankok01
You have change this map or saving with or without modification with an other editor ?
If i put cliffside without editor , cliffside not spawning zombies and /zspawn command not working.
Same as if put colorado wihtout edit , vehicles not spawns.
I guess another studio incompatable terrain 3.
Actually I want use own files studio , but Studio not compiling on WarZ (only compiling Infestation.exe) maybe some code change and I don't know.
Re: [HELP] About Doom mmo v3 three question
are you dev ingame ?
go in navicat in userdata set 126 in IsDevelopper
Re: [HELP] About Doom mmo v3 three question
I founded Cliffside problem. If cliffside settings saving on .xml (terrain.xml in Terrain3 folder) doesn't work. But save settings on .ini (terrain3.ini) it is working. Maybe problem this used by different studio.
But still I not found how to compile studio on doom mmo v3 src ? I want use studio doom mmo itself but Studio not compiling (compiling only Infestation.exe)
Re: [HELP] About Doom mmo v3 three question
Quote:
Originally Posted by
BumHurt
But still I not found how to compile studio on doom mmo v3 src ? I want use studio doom mmo itself but Studio not compiling (compiling only Infestation.exe)
like other - change build Final to Release
http://i.imgur.com/JQEExuA.png
Re: [HELP] About Doom mmo v3 three question
Okay i trying...
--------------------------
Done Thanks :)
Re: [HELP] About Doom mmo v3 three question
I have new problem. When I Use Create agent on Studio getting this error :
https://forum.ragezone.com/cache.php...m%2Fg5DdYO.png
How fix this problem ?