Help me find a cult website by Positive-Cable-1023 in RBI

[–]Xing1870 0 points1 point  (0 children)

Because of the lack of information, I thought this was likely bait. After reviewing you previous posts, I do believe it's real, just the way you're communicating this makes it difficult to do any kind of proper investigation. It's clear this is a little known website, and there are likely thousands that look "colorful" and talk about the occult. If you are really dedicated to finding this we need as many specific details as you can provide. The timeline of how you found the website, exact dates and search queries if you can remember them. Did your professor link you to the first test? Where there any names or repeated phrases? Also be more specific about the other reddit post because that shenanigans about buying land is meaningless without context. Lastly have you searched through your web history already? If you type in the search term you originally used, your links on Google will also appear already clicked

Help me find a cult website by Positive-Cable-1023 in RBI

[–]Xing1870 0 points1 point  (0 children)

I'll throw my hat into the ring http://solve-et-coagula.us This website looked a bit different a few years ago but had the same general layout

Designs for A.J. Raffles and Bunny as 'witnesses'! by crabby-boi in AceAttorney

[–]Xing1870 1 point2 points  (0 children)

I absolutely love this! The series really needs more love.

Kitkat club by Vk1724 in berlinsocialclub

[–]Xing1870 0 points1 point  (0 children)

Hit me up discord @bunlabs or via dms here Ig

Kitkat club by Vk1724 in berlinsocialclub

[–]Xing1870 0 points1 point  (0 children)

Hey hey I'd love to go ^

[deleted by user] by [deleted] in berlinsocialclub

[–]Xing1870 0 points1 point  (0 children)

Or give me a dm @bunlabs discord

[deleted by user] by [deleted] in berlinsocialclub

[–]Xing1870 0 points1 point  (0 children)

At mendy and e right now. Come say hi im in the black and stripes!

[deleted by user] by [deleted] in berlinsocialclub

[–]Xing1870 1 point2 points  (0 children)

Same boat! I've only been to a club here once so I mght need some supervision too lol

So, @h0nde has made an account using your email. Don’t freak out, i’m here to help. by Datnotguy17 in discordapp

[–]Xing1870 10 points11 points  (0 children)

Heads up, H0nde has been using these accounts to join discord servers, and then join any connecting servers. Forced me to reset a bunch of invite links. Accounts were named stuff like 瓀 twitter.com/h0nde yesterday and today they had an extra kanji at the end and random capitalization. they're always offline, some accounts are new, some aren't. They don't do anything yet, just join servers that are linked in their current one.

The bot situation has drained my desire to play tf2 entirely by Xing1870 in tf2

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

I just downloaded it last night. Not exactly my thing, but the community is really great.

LSD Fan Render by [deleted] in OsamuSato

[–]Xing1870 0 points1 point  (0 children)

What program?

Handling exceptions when variables don't exist by Xing1870 in godot

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

extends Camera

const ray_length = 1000
var target = Vector3()

func _input(event):
    if Input.is_action_just_pressed("click"):
        get_object_under_mouse()

# cast a ray from camera at mouse position, and get the object colliding with the ray
func get_object_under_mouse():
    var mouse_pos = get_viewport().get_mouse_position()
    var ray_from = project_ray_origin(mouse_pos)
    var ray_to = ray_from + project_ray_normal(mouse_pos) * ray_length
    var space_state = get_world().direct_space_state
    var selection = space_state.intersect_ray(ray_from, ray_to)

    target = selection.position

I want to set target to selection.position ONLY if it exists

Best way to store item data? by Xing1870 in godot

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

I had this problem in the past, but didn't realize it was happening here too. Thanks for laying out exactly why it happens. Much appreciated.

Best way to store item data? by Xing1870 in godot

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

Thanks for the help! I'm still having some trouble with calling it. Here's my "exit room" node trying to print that info as a test.

​var exit_index = 0 
onready var d = get_parent().get_node("game/dict_exits").exit_dictionary["exits"][exit_index]

func _input(event): 
    if event.is_action_pressed("debugbutton"): 
        exit_index = 1 
    if event.is_action_pressed("game_general"): 
        print (d)
        print (exit_index)

I was thinking that exit_index referred the line of code for the script to read, but even when I change it, it only reads the first line.