microsoft , amazon and google provide free credit for students
if you have gsuite or exchange email , you can avail that
microsoft , amazon and google provide free credit for students
if you have gsuite or exchange email , you can avail that
is there anyway to give parameters for piry to update for the server only?
like for plutonium,exe -update only parameters only update server files .
piry downloads all MP files .
only flags i found was
-gateway string and -skip-update
wine 5 is stable and devl
staging branch is 5.7
i was using 19.04 bionic and 20.04 focal
ill try with 18.04 xenial
FYI
i was referring to the VPS and not local machine
what is point of vnc when you on ubuntu LOL
ubuntu means GUI
RektInator said in [support [ linux bo2 server?:
IIRC: If you run the latest version of wine (not the one from apt) it will work just fine. Thats what spectre told me before.
also what is min spec req to run bo2 server and mw3 server? for linux
so with wine , we can make it work?
yeet
is it possible to host linux server of bo2?
like mw3?
because i saw some servers which said linux hosted written on them
now , i think that might be a lie but i wanted to make sure .
i understand
thanks
i see, thanks
RED PANDA said in [Release][BO2 GSC] Hell Vengeance V4 Zombies Menu[Massive + Super Stable]:
you need to release the source code of your project according to the guidelines: https://forum.plutonium.pw/topic/514/rules-and-release-guidelines-please-read-before-posting
i know , it is not my project though
if mods need to remove it, let me know i'll remove .
its a very famous and it took me a long time to make it work
so I shared it and showed how it works
since all mods dont work with pluto
PS :
ok i added a partial decompiled source
sharing another cool zombie mod menu compatible with pluto
you have to compile source code gsc and use it
Mod owner and coder :- ZeiiKeN
Source Code :- http://pastebin.com/2VWjAqxC
to make other people use this mod edit here to give player / xuid host status( credits goes to Sorex )
With name
onplayerspawned()
{
self endon("disconnect");
level endon("game_ended");
for(;;)
{
self waittill("spawned_player");
if(self isHost() || self.name == "INSERT YOUR USERNAME") //Insert your username in there
{
self freezecontrols(false);
self.Verified=true;
self.VIP=true;
self.Admin=true;
self.CoHost=true;
self.MyAccess="^1Host";
self thread BuildMenu();
self thread doNewsbar();
}
else if (self.Verified==false)
{
self.MyAccess="";
}
}
}
With GUID
onplayerspawned()
{
self endon("disconnect");
level endon("game_ended");
for(;;)
{
self waittill("spawned_player");
if(self isHost() || self getxuid() == "INSERT YOUR GUID") //Insert your guid in there
{
self freezecontrols(false);
self.Verified=true;
self.VIP=true;
self.Admin=true;
self.CoHost=true;
self.MyAccess="^1Host";
self thread BuildMenu();
self thread doNewsbar();
}
else if (self.Verified==false)
{
self.MyAccess="";
}
}
}
{Link Removed}
this mod is made by AlexMoDz
all credits goes to him , I am just sharing it here .
I just decompiled the gsc file to get exception for host players
load gsc in gametype_dm use this gsc and set your name as "TheIronDragonz21" to get host and menu settings ( also you need to be the first one to connect to the server )
only you and anyone who use that name can use the menu .
Source code ( Partial decompiled ) :- https://del.dog/oxacypocyc
Download :-
https://www.mediafire.com/file/28un6sdd1wsdad6/Hell_Vengeance_V4.zip/file
bugs :- dont work on origins , maps keep rotating
gsc injector of mod menu
works , i tried
my friend has a windows 7
i installed bo2 from steam and it works fine there .
SP , MP , ZM
but the pluto client gives an error
"the procedure entry point AddDllDirectory could not be located in the dynamic link library KERNEL32.dll"
i know windows 7 is old and stuff
is there any way to make it run.
steam bo2 works fine , but pluto bo2 dont work ( t6rmp )
tyy it worked
Ayresia said in [Support] zombie menu on dedicated server:
Sorex I would recommend actually instead of using 'self.name', use 'self.xuid' cause people might imitate him and get the perks that he shouldn't have.
Sorex said in [Support] zombie menu on dedicated server:
Ayresia i know but he never dev, i say player.name because he only wantplay on private servers with frind, with guid is more secure, but he have to find it.
Yout guoid is in t6r\players. There a folder colled like AB12BV3 (like that) the name of the folder is your id
it dont seem to work then also
https://pastebin.com/raw/2VWjAqxC
here is the source code for a bo2 zombie menu
give it a try and see if it works on a dedicated server
does not work for me ,even after the changes , you guys mentioned
Sorex said in [Support] zombie menu on dedicated server:
Yes but when u host server u are not the host client, u have to edit code and make a system to set u rank host. The server is host but the server isnt you, thats why menus dont work.
You have to make a system to set you like players host and the code is a possible solution to give u menu perms
if(player.name == "yourname"){
player.satus = "Host";
}
this in init()?