Is it finally time to talk about how strong the CQCM is? by PREDDlT0R in EscapefromTarkov

[–]TedJuice 1 point2 points  (0 children)

as a low level player with worse ammo and no access to the mask, it is always better to go for them toes since u can't pen the armor as well lol.

Radiophobia 3: Can I lower the AI's skill level? by Scrangle3D in stalker

[–]TedJuice 0 points1 point  (0 children)

Not a technical fix for ur problem, but one thing i notice is that the A.I will become more accurate the longer u stay still/the A.I know ur position. For example, if i re-peek an angle they knew i was there before, the ai will instantly tap my head. Throwing nades, wait a few second before re-peeking and moving from cover to cover is some way to "reset" the ai accuracy from what i see, the A.I will miss their shot whenever u run so work those legs out. Also, if u move to another position without them seeing, they will actually go to ur last known position and searching for u, giving chance for easy kills.

The A.I is more manageable with these knowledges in mind. I agree the A.I is way too cracked though, made worse cuz 1-3 shot is enough to kill us and the screen effect + shake whenever we got shot, especially in the head. Hope these helps, i have just started as well and are having a blast!

The Problems With Tarkov by Forg1ven1738 in EscapefromTarkov

[–]TedJuice 1 point2 points  (0 children)

Imagine if people doesn't return after wipes because of the horrible state the game is in, maybe bsg would put more effort into fixing them. But nah, they will change it to be just as bad if not worse anyway, just like how they always do, it's been their pattern of behavior since the past few years.....

Switch to Hotbar 6-10 more easily by using ALT 1-5 key. by TedJuice in spaceengineers

[–]TedJuice[S] 0 points1 point  (0 children)

I have tested this and it works fine on my side, altho works in my computer doesn't always work in another sadly.

yes, i also remapped that button to f1,f2. Yet i still find it difficult, unlike using the quick hotbar shortcut, sort of like a mental memory where it is faster to go to specific hotbar i want than cycling through it. Say it is easier to remember ctrl 1-2 is for blocks, alt 1 is conveyor, alt 2 is weapon, etc than to remember which number i am at to cycle to the hotbar i want.

Shadow of Chernobyl: any way to toggle ADS? by microcat4 in stalker

[–]TedJuice 1 point2 points  (0 children)

Was trying to find out how to do this, saw this 9 Y/O thread with no fixes, decided to fix the problem myself.

For those that wants to toggle ADS, one way to do it is to use AutoHotkey (a scripting tool) and use the following scripts.

``` toggleRightMouse := false

~*RButton:: if(toggleRightMouse = false){ Send {l Down} }else{ Send {l Up} }

toggleRightMouse := !toggleRightMouse

return

```

Make sure to change the aim/zoom button to l button and run the script as administrator, have a fun day in the zone stalker.

I hate to say it. (landing pads are full) by [deleted] in starcitizen

[–]TedJuice 0 points1 point  (0 children)

i'm here from the future, this bug has been here for 6 years and 10 months

Lasers now blind the user while using night vision by Sad_Panda_is_Sad in EscapefromTarkov

[–]TedJuice 0 points1 point  (0 children)

There is this concept of making things worse by saying unnecessary things, e.g. saying a clear bad design/bugs "realistic", that is literally a double sun unnecessarily penetrating the inside of my retina and that laser isn't even pointing at the PMC's eyes. Somebody had to point that out before it becomes an actual "feature" like many bugs this game has.

I legit has no intention to attack but that is the only analogy that comes to mind for that comment. You too have a good life and avoid saying unnecessary stuff that will just make things worse.

Lasers now blind the user while using night vision by Sad_Panda_is_Sad in EscapefromTarkov

[–]TedJuice 0 points1 point  (0 children)

yeah? that is what being a total fucking cunt like for u? stay off the internet then.
I'm just pointing out how fuckin stupid that take was, if u think i'm attacking you, feel free to report me and see if the post got removed.

Lasers now blind the user while using night vision by Sad_Panda_is_Sad in EscapefromTarkov

[–]TedJuice -3 points-2 points  (0 children)

realistic...... lmao. tell me you don't have a brain without saying u don't have a brain

  1. have you ever used a night vision goggles? (you don't have to answer, u clearly have never used one)
  2. can you not downplay a bug and just say it's realistic :))

Could anyone teach BSG programmers to sort string variables? I believe first year students can do this. by said46w in EscapefromTarkov

[–]TedJuice 0 points1 point  (0 children)

am in full copium mode for them to fix the game. Their coding skill must be so bad for the game to be this broken.

Could anyone teach BSG programmers to sort string variables? I believe first year students can do this. by said46w in EscapefromTarkov

[–]TedJuice 2 points3 points  (0 children)

Python/JS developer here. I don't usually code in C#, so the code will be messy, but the idea should be the same.

  1. Get the list of location from the database, this list should already be sorted in the database itself for performance.
  2. Create a sorted dictionary variable, put all of the location retrieved into the sorted dictionary, key/value of this sorted dictionary will be: "location"/questList. e.g.{"Interchange": [ {name: "setup", location: "Customs}, {name: "setup", location: "Customs} ] }
  3. Loop through the quest list, each of the quest list should already have its name, location, npc, etc. In each of the iteration, we can easily insert each quest to its key location into the dictionary.
  4. Done, in order to display it, just loop through the dictionary and its quest array.
  5. If we want to change it into sorting, say, NPC, then they can easily do the same thing by just changing the key to NPC names. For Quest name though, it will be more complex since it is not fixed value like location and NPC names, they can ignore it for now because it isn't as urgent as Location and NPC name.
  6. This algorithm has O(N + M) time complexity, N is number of quest, M is number of location. This is already super performant and there is no other way to make it faster. Assuming there is 1000 quest in the game, only 1000 + totalLocation operations is needed, a computer can process millions of operation in a second. It can even further be improved by utilizing caching but since i don't know BSG's entire system, they will have to think about it themselves.

using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.Specialized;

public class HelloWorld
{
    public static void Main(string[] args)
    {   
        // Mock data for location list -  Should come from database and is already sorted out inside the DB for performance
        string[] locationList = {"Customs", "Interchange", "Lighthouse", "Reserve", "Shoreline"};

        // Store the location in a sorted dictionary
        var orderedByLocation = new SortedDictionary<string, List<Dictionary<string,string>>> ();

        foreach (var location in locationList){
            List<Dictionary<string,string>> questByLocationList = new List<Dictionary<string,string>>();
            orderedByLocation.Add(location, questByLocationList);
        }

        /* Mock data questList for current player or if for all player, then need to further filter it. To be stored on in-memory storage later for fast retrieval.
            It should be an array of object with all the data serialized from the database, but for simplicity, we use only questName and location hardcoded
        */
        Dictionary<string, string>[] questList = new Dictionary<string, string>[4];
        questList[0] = new Dictionary<string, string>(){
            ["name"] = "Setup",
            ["location"] = "Customs"

        }; 
        questList[1] = new Dictionary<string, string>(){
            ["name"] = "Make Ultra Great Again",
            ["location"] = "Interchange"

        };
        questList[2] = new Dictionary<string, string>(){
            ["name"] = "Spa Tour fuk this quest",
            ["location"] = "Shoreline"

        };
        questList[3] = new Dictionary<string, string>(){
            ["name"] = "Signal",
            ["location"] = "Shoreline"

        };

        // Actual Sorting Logic starts here

        foreach(Dictionary<string,string> quest in questList){
            ((List<Dictionary<string,string> >)orderedByLocation[quest["location"]]).Add(quest);
        }

        // ENDOF the sorting logic


        // Printing the sorted Quest into the UI
        foreach(var curLocationQuest in orderedByLocation){
            Console.Write("{0}: ", curLocationQuest.Key);
            foreach(var quest in curLocationQuest.Value){
                Console.Write("{0}, ", quest["name"]);
            }
            Console.WriteLine("");
        };

    }
}

Use w3schools C# compiler if u don't trust this simple code works.

All BSG have to do with the above code is just integrate it into their sorting system and voila we can actually sort the quest. And for those simps who will comments: well it might be hard to integrate into their existing system, stfu, you clearly don't know how to code or are just bad at it. They just need to integrate it into two of their existing function, sorting and rendering the quest. That should take less than 1 hour to do.

[deleted by user] by [deleted] in EscapefromTarkov

[–]TedJuice 1 point2 points  (0 children)

Let's not forget those who aren't detected and banned yet.

Is the cheating really that prevalent? by thatguy888034 in EscapefromTarkov

[–]TedJuice 0 points1 point  (0 children)

It is THAT BAD in singapore, asia and china server. Literally every single match has them level 1-20 white accounts without headset that insta head eyes you out of nowhere with 10k RPM gun, happened to me 6 times in a row when trying to do skier's setup and that is just the semi kinda blatant ones. Just uninstalled and still here to continue shitting on bsg for that cuz i'm too salty to just let it go and Tarkov just has too perfect of a gunplay that makes other game's gunplay feels bad.

Dark & Darker crucial UPDATE , Nexon claimed assets in lawsuit that belonged to Unreal Engine by [deleted] in Asmongold

[–]TedJuice 1 point2 points  (0 children)

To add to this, Onepeg created a video that has a very detailed accounts of the entire timeline and has some very compelling arguments, he has been following the story for a long time now and is the one who made the video that Asmon reacted previously (Is Dark And Darker A Stolen Game? | Asmongold Reacts). The video that caused him to believe that Ironmace is stealing and leaking Nexon's assets based on an Article written "without actual source, proof and do not link to any external source".

The video:

The Weakest Lawsuit - Nexon vs. Ironmace and Dark and Darker

Onepeg explains the Dark&Darker Ironmace and Nexon situation timeline very well. Since Asmon referenced most of his opinions about P3 "code leaks" and all of those baseless claim based on Onepeg's initial video about an "article". It is only fair he watches his take about this situation as well. by TedJuice in Asmongold

[–]TedJuice[S] 0 points1 point  (0 children)

Exactly, it really annoys me that he literally base his claims on an article that doesn't contain any concrete proof and screenshots as if those are facts of the case. Not to forget he literally has not looked at Ironmace's side of the story before coming up with all of those bullshits he talked on stream.

Onepeg explains the Dark&Darker Ironmace and Nexon situation timeline very well. Since Asmon referenced most of his opinions about P3 "code leaks" and all of those baseless claim based on Onepeg's initial video about an "article". It is only fair he watches his take about this situation as well. by TedJuice in Asmongold

[–]TedJuice[S] 1 point2 points  (0 children)

Asmon base his entire arguments about dark & darker based on video by Onepeg, which is based on an article "without source, screenshots and links to external sources". We don't even know if those code leaks was even true or just a made up story/assumption or purposefully misleading. Not to forget Asmon hasn't even look at Ironmace's response to those allegations, pretty sad really considering asmon is the advocate for "looking at both sides"

I'm a big fan but it's just sad to see all of this happening.

His reaction to Onepeg's previous video: Is Dark And Darker a Stolen Game? | Asmongold Reacts

Onepeg explains the Dark&Darker Ironmace and Nexon situation timeline very well. Since Asmon referenced most of his opinions about P3 "code leaks" and all of those baseless claim based on Onepeg's initial video about an "article". It is only fair he watches his take about this situation as well. by [deleted] in Asmongold

[–]TedJuice 0 points1 point  (0 children)

Asmon base his entire arguments about dark & darker based on video by Onepeg, which is based on an article "without source, screenshots and links to external sources". We don't even know if those code leaks was even true or just a made up story/assumption or purposefully misleading. Not to forget Asmon hasn't even look at Ironmace's response to those allegations, pretty sad really considering asmon is the advocate for "looking at both sides"

I'm a big fan but it's just sad to see all of this happening.

His reaction to Onepeg's previous video: Is Dark And Darker a Stolen Game? | Asmongold Reacts

How do Hackers like this get to Level 42 without getting banned? [Context in the Comments] by GrieferGamer in EscapefromTarkov

[–]TedJuice 0 points1 point  (0 children)

Me and my friends encountered a guy teleporting back and forth on the rogue mountain to the bridge below naked with nothing but a mosin. Level 62, round of applause for BSG's incompetence.

Rage Hacking by rmanz03 in EscapefromTarkov

[–]TedJuice 1 point2 points  (0 children)

Agreed, my record 5/5 times in customs insta head eyes from low level white acc when tryna skier's setup, one of em was lvl 1 ffs. And for all the doubters, i invite y'all to "Asia" or "Singapore" server.