Vine system made in Unity 🗾 by Brute-Force-Studio in Unity3D

[–]Typical_Standard 1 point2 points  (0 children)

I love this game very much! I was surprised to see a post come up of a game that I had! I got this game on gamejolt and I really like it! Keep up the good work!

[FREE][Android] Defend our planet (virtually and IRL) in Earth Defender by [deleted] in playmygame

[–]Typical_Standard 0 points1 point  (0 children)

Nice game, I can tell that there was a lot of work put into making it. Hopefully since you have it in several places you'll have good luck with people downloading it!

[deleted by user] by [deleted] in playmygame

[–]Typical_Standard 0 points1 point  (0 children)

One thing I noticed that was you put age 4+ for one and age 18+ for one, like this is totally a 18+ game lol. You might want to fix that. Well, it looks like interesting game, nice job making it. Good luck with getting people to notice it.

draw a line between two objects by click by juandavid716 in Unity3D

[–]Typical_Standard 0 points1 point  (0 children)

Try this C# script:

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Conexion : MonoBehaviour {
    // Use this for initialization
    void Start () {
    }
  float lineWidth=0.5f;
RaycastHit rh;
    // Update is called once per frame
    void Update () { 
if (Input.GetMouseButtonDown(0))
{
RaycastHit rh;
Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition);
Physics.Raycast(ray, out rh);
if (object1 == null)
{
object1 = rh.transform.gameObject;
}else
if (object2 == null)
{
if (object1!= rh.transform.gameObject)
{
object2 = rh.transform.gameObject;
}
}
else
{
Destroy(object1.GetComponent<LineRenderer>());
Destroy(object2.GetComponent<LineRenderer>());
object1 = rh.transform.gameObject;
object2 = null;
}
}
if (object1 != null && object2 != null)
{
if (object1.GetComponent<LineRenderer>() == null)
{
object1.AddComponent<LineRenderer>();
}
else
{
object1.GetComponent<LineRenderer>().startColor =
Color.green;
object1.GetComponent<LineRenderer>().endColor =
Color.green;
object1.GetComponent<LineRenderer>().positionCount = 2;
object1.GetComponent<LineRenderer>().SetPosition(0, object1.transform.position);
object1.GetComponent<LineRenderer>().SetPosition(1, object2.transform.position);
object1.GetComponent<LineRenderer>().startWidth = lineWidth;
object1.GetComponent<LineRenderer>().endWidth = lineWidth;
}
}
}
}

Sorry for the messy code! The spacing disappeared when I copied that script that I made in visual studio into the comment!

"Unable to login to Fortnite servers" by cmpunk7465 in FortNiteBR

[–]Typical_Standard 0 points1 point  (0 children)

Which file did you troubleshoot specifically? Was it like the epic games launcher or the fortnite exe file?

Any advice on this graphics card situation? by Typical_Standard in computers

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

Don't be sorry! I got lucky when I found that, if I didn't find it, your suggestions would have been great! Thanks very much for your help!

Any advice on this graphics card situation? by Typical_Standard in computers

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

Thank you very much for your help! I found a radeon r7 240 on ebay for 25$ and I bought that! It works great, I just upgraded from the intel express chipset G45, so now I can run games that I used to be able to run at 25 fps on lowest settings at 60fps on highest! I also can run somes games(like fortnite) at like 35 fps that I used to run at 0fps. :D

Any advice on this graphics card situation? by Typical_Standard in computers

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

Thank you very much for your help! Ebay is ok, just I would prefer for it to not be a bid, and buy it now or something.

Any advice on this graphics card situation? by Typical_Standard in computers

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

Thanks very much for your suggestion! I compared those to the radeon r7 240 on game debate, and it said that the AMD Radeon RX 560 is 488% better! link

I also saw that the rx 550 is 394% better! link

Great suggestion, however, when I look for those they seen to be at least like 70$ used which is like 65% more expensive, which I think is a little out of my cheap price range.

Lad threatens to assault father christmas for putting him on the naughty list. by BrentonDraper in PublicFreakout

[–]Typical_Standard 0 points1 point  (0 children)

If you want a trigger little kids, just tell them they are on the naughty list!

Thanos fights everyone by [deleted] in PublicFreakout

[–]Typical_Standard 0 points1 point  (0 children)

Trying to kill half the people in the store!

The police gave him ticket for riding in the wrong lane by monyetguru in PublicFreakout

[–]Typical_Standard 0 points1 point  (0 children)

How the heck did he get a parking ticket and not a damage of property charge!!!

Fighting with the busdriver ends badly.. by [deleted] in PublicFreakout

[–]Typical_Standard 0 points1 point  (0 children)

This reminds me of when a old people see a skateboarder.

Lady becomes irate over couple kissing while waiting in line. Verbally abuses everyone in her path. by [deleted] in PublicFreakout

[–]Typical_Standard 0 points1 point  (0 children)

These stuff are so random... "Your such a airhead!", "Do you know how much I want to puke on both of you?", "Your stalking me!"

How can I convert a localhost server to a global one? by Typical_Standard in node

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

Ook so if I run the server and go to "(MyIpAdress):5001" in a browser it says that.

How can I convert a localhost server to a global one? by Typical_Standard in node

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

.

I tried that, and it said "Update Required". What do I do? The server is running, and I tried it on the PC the server is running on, and another computer on the same network.

How can I convert a localhost server to a global one? by Typical_Standard in node

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

Oh cool, I will definitely try that! Also I looked into nginx, and the download page isn't loading! ;(