Giter Site home page Giter Site logo

cso2-launcher's People

Contributors

cs-student101 avatar geekidos avatar l-leite avatar ochii avatar whyyes-max avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

cso2-launcher's Issues

Launcher Crash

Turn on the console and press the down rudder more than twice to create a crash.

Back button missing

Back button disappear sometimes. And you need to press ESC to left room or server. This bug appears only on 0.4.0+ versions

Game crashes with MSVC runtime error

I've got this problem recently after a blackout happened. Can someone help?

err
err1
err2

I've done reinstalling every Redistributable but still the game crashes when loading.
Game Launcher is basically 0.2.2
This occured after a blackout. Before, the game plays nicely
The crazy thing about this is that it doesn't display the directory on what program crashes

Tier0.dll Error

can't not found tier0.dll in my PC,sry I'm chinese so hard to tell what it's like in Englishi,even I copy the tier0.dll from Bin folder and Paste it to SysWOW64,it still error
无法定位程序输入点ThreadWaitForObjects 于动态链接库 tier0.dll上

The winsocket problem still exist for me.......

I don't know if only me have this problem. That's my case: If I start a private room, add some bot(not by console) then finish the match and repeat this several times,(start about 4 bots rooms) must cause the game disconnect from the server. I have tried this on other computers and the results are same. If anyone has the same problem or knows something about it, thanks for sharing.

fps_max 999

CS:O2 fps limit value is 240, but CS games are not.

can you make fps limit value to unlimited?

The new build launcher caused vram leak

The game crashes or texture/ui images not loading.

Lot of people had this issue, not my problem.

Both Build 0.2.0-62199858-master and Build 0.2.0-3f93e707-master had this issue

tier0.dll plz help me

I download the tier0.dll from a website and Paste it to SysWOW64 and system32. It show this to me when I startEd the cso2-start.bat.

Launcher.exe 無法找到輸入點
Launcher.exe could not find the entry point

無法找到程序輸入點 ?AddMsg@CSO2DocumentLog@@QAAXHPBDZZ (在動態連結程式庫 tier0.dll)
Could not find program entry point ?AddMsg@CSO2DocumentLog@@QAAXHPBDZZ (in the dynamic link library tier0.dll)

I am Taiwanese my English is very bad

Modify ingame logos

Hello @Ochii

1-How to change the Counter Strike 2 logo at the entry when we log in. where to change --- and when I run the game I have the nexon logos I want to remove them

2-When you log in to the game you will find how korean posts are available on the popup screen.

3-How to change the logo at the bottom right of the home screen when I log in

4-Which program should I design with the new character?

We will share your screenshot.

http://prntscr.com/mre9ha

http://prntscr.com/mrec5w

http://prntscr.com/mred62

http://prntscr.com/mredqs

screenshot_26

also the game system automatically launcher when you are constantly writing users are not satisfied with the rope.

thank you for your help .... <---

I Cant login

I Can't login since yesterday

this appears

01

then it force close

tried to press home button but there is no characters and cant open any map even trying console and

type map name it load about 5% then it force close

sorry if my english isn't good

I have also tried different usernames , passwords and latest launcher and server files , old launcher server

files and save still the same problem

The game was working fine before

thanks in advance

Can't join a match

Why is it that when I'm playing, everyone is online, and then the host can play the game, and when someone else loads it to 15% or 10%, it gets stuck and can't get into the game?
How can I solve this problem?

Error 3001

Hi. Could you help me please? I've get error 3001 while loading map. It happens on 5%, after that the game is crashed. I tried the latest versions and it all show error messages. Interestingly, version 0.1.3 works fine.

Cannot load older maps

CSO2 has updated its engine.

When I load an old map(UC_MUSEUM.bsp eg.) game crashed.
Console:
Host_Error: Mod_LoadCubemapSamples: funny lump size in maps/UC_MUSEUM.bsp
Crash message dialog:
MapEntity_ParseAllEntities: found LZMAG when expecting {

So how to fix these old maps?

Unable to start the game and graphics problems

image
image

Crashlog:
17:58:37 D3D9Ex State [5]
17:58:37 [NVIDIA GeForce RTX 2080 Ti] [VID:0x000010de] [DID:0x00001f07] [Riv:0x000000a1] [Dx:95/95] [DVer:0x00190015/0x000e0759]
17:58:37 [Query] Update queued con vars.
17:58:52 VideoMode shutdown
17:58:52 VideoMode :Released Full Screen
17:58:52 Detach from window
17:58:52 Destroy window
17:58:52 unload unicode
17:58:52 VideoMode :Destroyed Game Window

Game cannot start

I open launcher_main.exe and it shows the cmd then nothing happens .
It doesn't open the game please help!!
image

Add a command line arguments to set username and password to login at start

To skip the login screen like tiancity server
I managed to get it working with a ugly way:

struct LoginParmPointer
{
	uint32_t padding[0x4]; // 0-0Fh
	char** userName; // 10h-13h
	uint32_t padding1[0x7]; // 14h-29h
	char** passWord; // 30h-33h
};

struct LoginParm
{

	uint32_t padding[0x2]; // 0-7
	LoginParmPointer *values; // 8-0Bh
	uint32_t valueSize; // 0Ch-0Fh
};

// Run those code in CSO2UIManager_InitMainUI(client.dll + 0xAE4610)
	auto newvalues = new LoginParm;
	newvalues->values = new LoginParmPointer;
	newvalues->valueSize = 2u;
	char *username = "123456789";
	//max 4
	char *password = "1234";
	newvalues->values->userName = &username;
	newvalues->values->passWord = &password;

	((void(__cdecl*)(LoginParm *values))client.dll + 0xACA490)(newvalues);

Then the game will login as 123456789 with password 1234 at start.

@Ochii

is it possible to save user's own data?

I have tried to play with my friend by P2P,is very good,but sometimes it have a little bit unstable,lost connection to the server or something,if we have these issues,is not a big deal,we can rejoin the game then play it,but my friend thought is very annoying to re-edit the inventory and buy menu,we have tried to change language and is pretty much a little bit problem too,thread error will apear most of the time,he have to restart the game a lot's of time,so I want to ask,is this problem from game's master server's own or our P2P problem?and we want to ask is it possible to let the game save player or server master's own data,such as buy menu setting and charater or anything like that,we'd very love this game and very nice to see you let the game come back if we're using P2P or VPN to play it with our friend,hope you do better and I will reply you more BUGs and problems to you once we found these

Internal console?

The external console is too annoying.
I'm trying to make a internal one with ImGui.

nte o vyf0 8 d 3zfnf350

How do you guys think about it. or can you guys get original console working?

And how should I make something like auto complete.

I Need 24407 Launcher

Dear Ochii:
請問,可以製作台服 24407 版的啟動器嗎?
台服的無線電語音有多國語音。

Can you make a launcher for Taiwanese 24407 version ?
The Taiwanese 24407 version radio voice has multi-national voice.

Can't open any map through console or mainmenu

Uploading Capture.PNG…

This Happens when i try to open my cso2 maps from console and also there is nothing to connect any server
can you help me brother Ochii how to fix this
i never played this game before and i love it but i cant play it because of this error.
also the old launcher files doesn't load the cmd stuck at a place before launching and the latest one load
it successfully can you help to fix this maps error i just want to play this game offline.
Solve my problem brother i will be very Thankfull. :)

GetCustomPath has runtime error?

so here is my problem, if I enable -enablecustom, runtime error occurs when I try to enter zombie crush:
725f a 1yjse _mte qpij

then the game will stop working and the crash log tell me that it was the client.dll that made the error
here are some information that will give you a quick look at my situation:

  1. when I'm not using -enablecustom, I can enter normally, and I can still see the "failed GetModOption" error
  2. except for zombie crush, the rest of the modes work fine without any problems (I hadn't even noticed this problem)
  3. even if my custom directory is empty, I still get this error
  4. starting with all versions of 0.2.0, this error will occur when I try to enter zombie crush, unless I turn off -enablecustom
  5. even if I download the source code and compile it myself, I will still encounter this error
  6. I personally use the modified version of 0.1.14. although the custom code of GEEKiDoS was added, but I can still enter the zombie crush normally

however, it is amazing that all of my Chinese friends except me have not encountered this problem. I have already tried to update C++ 2017 Redistributable, and clicked repair for 2013 and 2012.
I have not tried to reinstall 2010,2008 and 2005. I will do it after release this post.

-enablecustom not loading .lo files

If you use -enablecustom flag, it works fine, but it not loading .lo files to the game. Those files are compiled scripts. I tried to replace one mode with another to make two same modes. I renamed everything correctly, but game don't even trying to load my new .lo files and using old ones.

Steps to reproduce the behavior:

  1. Go to 'custom\scripts\mod' and create for example folder 'z_scenario_side'.
  2. Put in this folder, mode files from folder 'hide' and rename them into mod_z_scenario_side.lo and ui_z_scenario_side.lo.
  3. Launch the game mode and it will start Z Crush Side instead of Hide'n'Seek without attempting to load new files.

Windows 7 (64 bit)

Launcher Crash

Current Launcher doesn't support the listed arguments -lang -decryptedfiles -enablecustom

hopefully there will be available launcher for the CSO2 V24407 - Taiwan

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.