-
Posts
507 -
Joined
-
Last visited
-
Days Won
5
Everything posted by Jusonex
-
Both crashdump and MTADiag do not provide enough information, so reinstalling GTA might be a good start (then we'll be able to get a full MTADiag log as well).
-
ShadowPlay works fine here. Could you please provide an MTADiag log? You can download MTADiag from http://files.mtasa.com/apps/tools/MTADiag.exe. Press 'n' when asked. Also zip all dmp files from Program files\MTA San Andreas 1.4\MTA\dumps\private, upload them on http://upload.mtasa.com and post the link here.
-
FYI need to create libcef_dll_wrapper.lib
Jusonex replied to crizCraig's topic in Open Source Contributors
I can't reproduce it. Have you already tried to cleanup and rebuild the solution? -
FYI need to create libcef_dll_wrapper.lib
Jusonex replied to crizCraig's topic in Open Source Contributors
Where did you move libcef_dll_wrapper.lib from? mtsa-blue\vendor\cef3\out\Debug\lib\libcef_dll_wrapper.lib / mtsa-blue\vendor\cef3\out\Release\lib\libcef_dll_wrapper.lib is the default output directory. -
Eigentlich sollte die Fehlermeldung selbsterklärend sein. Heißt es wird als 5. Argument eine Zahl erwartet, wohingegen du nichts übergeben hast. Das 5. Argument von setMarkerColor ist der Alpha-Wert: Ändere Zeile 22 also so ab: setMarkerColor(vipCafeEnter, r, g, b, 255)
-
There's already an issue on Mantis: https://bugs.mtasa.com/view.php?id=6337
-
The HTTP port might be blocked. Type openports into the server console to check the status of the port.
-
Downgrade to the latest stable again and start MTA via command line (wine "Multi Theft Auto.exe") to get wine debug outputs. Furthermore, MTA 1.5 will not support Wine, so you should think about alternatives such as VMWare player/workstation (MTA runs in VMWare better anyway).
-
You can spawn it on the client using createObject. The latest nightly includes the patch btw: https://nightly.multitheftauto.com/?mtasa-1.4-full_rc-latest (the resources have not been updated yet though).
-
What about this? https://forum.multitheftauto.com/viewforum.php?f=179
-
It's an MTA issue. Please wait a few days (till the next build is available) and follow the following steps then: 1.) Download the latest nightly from: https://nightly.multitheftauto.com/?mtasa-1.4-full_rc-latest 2.) Download the latest resources from: https://mirror.multitheftauto.com/mtasa/resources ... latest.zip
-
I am pretty sure you will not find a 'professional partner'. It might be a nice offer, but without knowing you it is not trustworthy enough. People 'who know what they are doing' normally have their own dedicated server/VPS on the one hand and will not hand their script to someone they do not even know on the other hand. (There are too many people around here who are willing to steal gamemodes). So all left people are 13 year old kids who cannot afford an own dedicated server. My advice is: Join your favourite server and try to inspire confidence, if you are really willing to contribute to a well-played server
-
CEF does not influence MTA's performance directly as it runs in a secondary thread/process. More information about that here: https://wiki.multitheftauto.com/wiki/CE ... erformance
-
If transparent is set to false, the background will be an opaque white (if no other color was explicitly specified in the HTML file). If transparent is set to true on the other hand, the default background will be transparent by default. If you want to set a certain alpha value, you have to edit the dxDrawImage call (link: https://github.com/Jusonex/mtasa_cef_to ... w.lua#L155) to: dxDrawImage(self.m_BrowserPos, self.m_BrowserSize, self.m_Browser, 0, 0, 0, tocolor(255, 255, 255, alpha), self.m_PostGUI) By the way: I wrote a small CEF introduction: https://wiki.multitheftauto.com/wiki/CEF_Tutorial (it is still incomplete tho).
-
Planning to make MTA related game with C/C++
Jusonex replied to Deepu's topic in Open Source Contributors
What exactly to do you mean by 'bridging'? -
No. MTA's hardcoded whitelist supports wildcard domains, but allowing wildcards to be requested is a security risk. We might reduce the security restrictions later a bit, but it's usually better to start with too many than with insufficient security restrictions. People doing intensive testing. My ToDo list is atm nearly empty.
-
You did not request any Twitch domain. Replace line 12 by: browser.pages = requestBrowserDomains({"google.com", "youtube.com", "twitch.tv", "pandora.com", "twitch.tv", "www.twitch.tv", "static-cdn.jtvnw.net", "www-cdn.jtvnw.net", "api.twitch.tv", "web-cdn.ttvnw.net", "media-cdn.twitch.tv"}) Unfortunately, Twitch loads data from many domains, so I might missed some. I think we will add Twitch to the whitelist before release. You can display blocked URLs as follows: 1.) Start runcode 2.) /debugscript 3 3.) /crun setDevelopmentMode(true)
-
Could you please tell me exact steps to reproduce?
-
Oh yeah, that example is very old. I meant https://github.com/Jusonex/mtasa_cef_tools (there is a download button on the right).
-
What OS are you using? There are some audio issues on Windows 10. Furthermore, try converting the audio file to another format such as ogg or mp3.
-
Try restarting the resource for now. The example resources on GitHub don't call loadURL again after allowing the request. I'll add the missing code soon.
-
No. The following window opens after executing Browser.requestDomains{"nyan.cat"} A "fake signal" is not possible as the GUI window is created by MTA.
-
No, the white- and blacklist is MTA global and managed by the MTA team. URLs that are neither whitelisted nor blacklisted can/have to be requested via requestBrowserDomains/Browser.requestDomains (plus the player must accept the request)
-
That would require a way to modify the useragent, either directly or via a function like setBrowserViewMode(browser, "mobile"). Also, since there is no way to inject Javascript code into browsers in remote mode, it might be worth considering adding something like callBrowserSpecialCommand that allows you for example to play or pause a YouTube video instead of many specialised functions.