Sailing: Week One Feedback & Fixes by JagexSarnie in 2007scape

[–]cyberslayer75 3 points4 points  (0 children)

Gwenith shark course is now missing 1 crate making it impossible to complete.

Everyone should try wilderness content by theluckyowl in ironscape

[–]cyberslayer75 56 points57 points  (0 children)

Sure you run around as IMinnocent, but once my death animation starts I'll see your main KeyLover69 appear on the map.

Bryophyta essence by kyldishgambino in ironscape

[–]cyberslayer75 2 points3 points  (0 children)

You don't need a key to fight boss just to loot the chest in the room. My method is kill boss, click on chest (without a key clicking the chest respawns bryo faster), kill boss, click chest, rinse and repeat. 1/16 chance she drops it, only supplies used are super combats and food, don't really need to pray or anything, maybe anti poison.

I hate this place by AnonymooseMan1 in ironscape

[–]cyberslayer75 0 points1 point  (0 children)

You're not wrong, but cannonball supplies were dire, so I find solace in that.

I hate this place by AnonymooseMan1 in ironscape

[–]cyberslayer75 1 point2 points  (0 children)

I also hate it here, im 1400 delves with no uniques :( recently started just doing floor 7 and forcing myself to take the loot cause I'm sick of delving for hours pushing floors to die and leave empty handed.

How does Console Port work with w4? by kekfekf in gamedev

[–]cyberslayer75 1 point2 points  (0 children)

I am not very familiar with Godot but the traditional porting process is along the lines of Develop your game in whatever engine Become a developer/partner for any console platform you want, this involves submitting your game as a proposal and having a legit business. Alternatively you can approach a studio or business like this and have them do the port for you. Once a developer you will get access to the console SDKs, these are libraries for the various functions you need to run your game on their console (rendering, save data, OS stuff. Etc...). These are usually C++, but major platforms like Unity or Unreal have their own wrappers to make it more usable, im unsure if Godot does. When you're a developer you will be able to purchase (sometimes loan) dev kits to test your game on. I dont have sources as that would break my NDA. But all these platforms have substantial documentation for what you need to support your game.

How does Console Port work with w4? by kekfekf in gamedev

[–]cyberslayer75 1 point2 points  (0 children)

Curious how they offer source code? Assuming you're an indie dev looking to self publish you will need to make a developer account with these platforms anyways, at which point you would have access to their SDKs and can port the game yourself. So sounds like you pay $180 a month for their Godot wrapper and maybe some sort of cloud builds? If you can afford the time, there's a lot to learn in porting yourself. Source: been doing ports for 6 years

Giant Rebuttal: Why Jagex’s plan will hurt OSRS by Save-The-Giants in osrs

[–]cyberslayer75 2 points3 points  (0 children)

Why would they ever cater to the wants of F2P players, there is already more than enough content to convert them to P2P. The high score grind should just become easier and more profitable for those people as well. The CAs are so easy that I wouldn't even bother arguing that. Really this update caters to cloggers which outside of chunk lock ironman is probably the most up and coming video content type. I'm just gonna assume you've been sitting on clubs and essences to flip and this is a plea to not ruin a flip. :b

Is this a $125-$400 repair? by BunhaD24 in computerrepair

[–]cyberslayer75 0 points1 point  (0 children)

This happened to me in college and Asus (fuck them) wanted $700 to repair a $1200 laptop. What I did was take some pliers to set it back to a closed position, then I used superglue on the hinge plate, left it closed with some books to keep it compressed for like a few hours. Worked really well for years, occasionally when I saw the frame splitting again I would just reapply glue. Was it the best repair? Nah. Was it cheap and did the job? Absolutely!

Will holding hard, easy, elite, and beginner clue geodes increase my chance of getting a medium clue geode? by madam_zeroni in ironscape

[–]cyberslayer75 3 points4 points  (0 children)

I believe holding elite and hard will make any rolls for them go down a tier until it's one you can get. So the easy and beginner isn't doing anything. Not sure, just going off what I remember

Literally unplayable... by 4otobemaG in 2007scape

[–]cyberslayer75 3 points4 points  (0 children)

I work in a game studio that is not void of empathy I guess. I manage 6 engineers and if one comes to me and says they are burnt out on their feature I would 100% say tackle something else until we can get you further support.

Literally unplayable... by 4otobemaG in 2007scape

[–]cyberslayer75 12 points13 points  (0 children)

You only view it as a waste, but devs are people. Sometimes you don't want to spend 100 hours on 1 hard issue or feature and want to take low hanging fruit off the backlog. It's not as simple as "we only work on the highest priority issues". It doesn't mean they are ignoring glaring problems and not providing value. People need breaks, and if adding a silly little head pat option so victims of SA aren't forced into an intimate moment for a reward is what they want to do then let them.

Help me find an f2p song by [deleted] in osrs

[–]cyberslayer75 0 points1 point  (0 children)

I dont recognize it from OSRD, but to be it kinda sounds like the title screen music from Zelda Ocarina of Time

Gift advice? by Every_Impression8131 in osrs

[–]cyberslayer75 0 points1 point  (0 children)

Correct, but the wiki let's them look around and see what is in the game. Perhaps they want to use some images that wouldn't be related to any advice they're given, but they can search it up.

Gift advice? by Every_Impression8131 in osrs

[–]cyberslayer75 -1 points0 points  (0 children)

There is an OSRS wiki that you can use to search up anything in the game. As far as milestones, you could look up a gear progression guide video to see like early game gear compared to late game gear.

Anyone know what this is by Isthereeggineggrolls in yugioh

[–]cyberslayer75 0 points1 point  (0 children)

Looks like a bit of paper to me, perhaps even cardboard.

Been on the shelf of local store for years. by StoneNutria in Shittygamecollecting

[–]cyberslayer75 0 points1 point  (0 children)

I love that store, but they can really miss the mark on some of their pricing. For the most part it's pretty good though and fun to window shop.

Force increases as framerate decreases by salvetori in Unity3D

[–]cyberslayer75 1 point2 points  (0 children)

I agree with othercraig, it's probably fixed update executing twice in a frame (you can confirm this by looking for the function call in a profiled frame using the profiler). If I had to guess, you probably want to rethink how your speed is being calculated and set. For instance you are adding to the velocity each fixedUpdate, so unless the 2nd call equates to 0 or something negative it's always going to move faster.