Is this an asperger's trait or just a behavioral script?

Edit: I probably phrased this wrong. I am not asking for diagnosis. I just want to know if someone can relate. What are your experiences? How do you cope/grow?

I always thought I was easily readable, which I am not.

I can see when someone shows sympathy, but I only see the emotions I pick up as an end in themselves. (I think I also show emotions as an end in themselves?) Thats means I can't see motivations or goals of others. Which creates weird situations, I can only analyze months or years later. The root cause seems to be that I am oblivious to my own emotions and therefore I have no clue how I could appear to others. As if I refuse to read situations (because I am overwhelmed/ preoccupied) There starts the disconnect in interaction. A full stop to intersubjectivity.I think I sometimes mirror other people without realizing that, so they think I feel the same as they do.Not being exposed to people, avoidance of engagement, coping habits, falsely relying on the story mode of my brain (filling in the dots on my own instead of asking for clarifications) might all play a role in this.

I'm wary of pathologizing myself, as this easily could be acquired behaviour, or a coping mechanism or just underdeveloped skills from being aloof and being very passive in social situations. I would even go so far and call it childlike, no self-awareness.

could starting to name ones own emotions help? - based on the theory behind "alexithymia" (not naming emotions and not feeling emotions are connected)

Theory: Liking someone is an interaction and not a status, so interest in someone needs to be reciprocated to become liking. So looking for signs of being liked is a dead end? there is only engagement, interaction, an "in betweennes"looking for something is analytical, creates breaches, differentiates. engagement creates virtual bonds you can't see or name, so they can also be temporary.the need for affirmation (of trust) leads to being oblivious to ambivalences, to uncertainties everyone deals with/shows

👍︎ 5
💬︎
📅︎ Aug 19 2020
🚨︎ report
Any scientific concepts regarding cognitive schemata and behavioral scripts in a social context?

An example:

When I see a cashier / a friend / an older person / a stranger, certain cognitive patterns are activated. Based on experience, my brain uses a heuristic to classify the specific situation and compare it to past experiences. If the experience is known and part of my repertoire, I behave according to that cognitive pattern, without much thinking. Due to those stored cognitive patterns (based on past experiences), a certain behavioral pattern is activated and I behave according to what I think is the right behavior in that situation:

I pay the cashier and behave neutral and friendly, I greet my friend, behave relaxed and feel comfortable, I respect the older person and act considerately, or I hold a neutral but attentive stance in front of the stranger.

What are those processes called? Any concepts and models regarding those processes and mechanisms? I'm not even sure whether there's a scientific basis for the idea of cognitive schemata and behavioral scripts, let alone the connection between the two. I need scientific support to substantiate an idea.

I hope you can help me!

👍︎ 5
💬︎
📅︎ Jun 10 2020
🚨︎ report
[WP] Neuralink finally developed their interface. But what they found is beyond expectations... the brain has a filesystem: stats, reaction to inputs, behavioral reaction scripts and... a file called "limiters.brn"
👍︎ 13
💬︎
📅︎ Jul 19 2019
🚨︎ report
In today's interconnected society, companies adopted less transparent practices of online tracking and behavioral profiling. Our solution incorporates a tracking script blocker that will severely disrupt the ability to continue tracking in real-time the user's activity.
👍︎ 67
💬︎
👤︎ u/Route190
📅︎ Jul 14 2018
🚨︎ report
Practical Behavioral Profiling of PowerShell Scripts through Static Analysis (Part 2) unit42.paloaltonetworks.c…
👍︎ 2
💬︎
👤︎ u/quellaman
📅︎ Oct 24 2019
🚨︎ report
In today's interconnected society, companies adopted less transparent practices of online tracking and behavioral profiling. Our solution incorporates a tracking script blocker that will severely disrupt the ability to continue tracking in real-time the user's activity.
👍︎ 26
💬︎
👤︎ u/huanxray
📅︎ Jul 13 2018
🚨︎ report
X-Post- Need: Behavioral flowchart or script for Aid

I teach a self-contained 8th grade class. I have a 2:1 aid that helps one student academically and another student behaviorally. Not ideal, but what we have.

Problem: Aid over helps and does everything for student with behavior problems, who now uses her instead of doing any work, and the student that needs help academically does not get enough support.

Need: I am in the process of creating a flowchart/script for the aid to use when interacting with the student who has behavior issues to help her manage him and set expectations, but was wondering if there is something like this already out there, or least a template.

Any ideas?

👍︎ 2
💬︎
📅︎ Oct 11 2015
🚨︎ report
A lot of the confusion about BPD behavior and reactions to my behavior made more sense to me after I started seeing him as script-obsessed.

What I mean about that is that the pwBPD already decided what I was that day, good or bad (with an option to slide me or anyone/anything else into bad, but not the other way around), and nothing I did or said was going to change that. If anything, deviating from the script would increase his anger and rage toward me.

It didn't matter that I didn't have an opportunity to read the script. The script was still there, and he was the director. I was on stage, and he expected me to be the villain that day whether I wanted to be the villain or not.

On a different day where I'm supposed to be the savior or supporting role in his maudlin tragic play, if I went off script and didn't give him the manic pixie dream boy assuring words, or didn't soothe him "spontaneously" in a way he was already expecting, he had a backup villain script waiting for me.

Seeing my interactions that way helped me make sense of so many of them. I wasn't a person with my own hopes and dreams and aspirations. I was an actor, I was on stage, and the script was already written for what I was supposed to do.

👍︎ 47
💬︎
📅︎ Jan 12 2022
🚨︎ report
Powershell script changes behavior when called by CMD

Hello,

I have recently written a script which asks for AD credentials, checks those against AD to verify them, then checks if a network drive has been mapped. If it is mapped, it removes the drive, when it's not it maps the drive, which on it own, works perfectly.

I want the script to execute silently without a window so i am currently using this:

powershell -WindowStyle Hidden -ExecutionPolicy Bypass -File "path\to\script"

i also tried this

mshta vbscript:Execute("CreateObject(""WScript.Shell"").Run ""powershell -NoLogo -Command """"& 'C:\Skripte\DriveMappinng.ps1'"""""", 0 : window.close")

On the device i want this to work, the computer is constantly logged in with a local user account.The Computer is connected to the network.

The script without calling it from CMD or with VBscript does exactly what it is supposed to do.

AM i missing something here? Shouldn't it be irrelevant from where the script executes?

--- Edited:

I got to the point where running the batch with -Noninteractive maps the drive properly but executing the batch again does not unmap the Drive.

$error.clear()
trap { Write-Host $PSItem.ToString(); }
#Define VARs for second Part of Script
$driveexists =  Test-Path X:
$DrivePath = "Drivepath"
# Prompt for Credentials and verify them using the DirectoryServices.AccountManagement assembly.
#Write-Host "Geben sie bitte ihre Logindaten ein (Username & Kennwort) um auf das Laufwerk zuzugreifen."
Add-Type -AssemblyName System.DirectoryServices.AccountManagement
# Extract the current user's domain and also pre-format the user name to be used in the credential prompt.
$UserDomain = $env:USERDOMAIN
$UserName = "$UserDomain\$env:USERNAME"
# Define the starting number (always #1) and the desired maximum number of attempts, and the initial credential prompt message to use.
$Attempt = 1
$MaxAttempts = 2
$CredentialPrompt = " (attempt #$Attempt out of $MaxAttempts):"
# Set ValidAccount to false so it can be used to exit the loop when a valid account is found (and the value is changed to $True).
$ValidAccount = $False
# Loop through prompting for and validating credentials, until the credentials are confirmed, or the maximum number of attempts is reached.
Do {
    # Blank any previous failure messages and then prompt for credentials with the custom message and the pre-populated domain\user name.
    $FailureMessage = $Null
    $Credentials =
... keep reading on reddit ➡

👍︎ 13
💬︎
📅︎ Jan 14 2022
🚨︎ report
We achieved a new dope strafe effect with Motion Blur & URP. And made a new camera behavior. This will be the last time we using our own camera script, the following projects will be using Cinemachine! v.redd.it/lvwquwzxkac81
👍︎ 17
💬︎
👤︎ u/Limkernel
📅︎ Jan 17 2022
🚨︎ report
Links of Perceived Pornography Realism with Sexual Aggression via Sexual Scripts, Sexual Behavior, and Acceptance of Sexual Coercion: A Study with German University Students mdpi.com/1660-4601/19/1/6…
👍︎ 3
💬︎
👤︎ u/Silfennic
📅︎ Dec 26 2021
🚨︎ report
I'm working on making a shark addon for Bedrock edition. All I need to do is script behavior and add animations.

Blockbench

In game

https://preview.redd.it/4xds2tn0ka081.png?width=1280&format=png&auto=webp&s=0953c4e1d9dffabb5d560aec21a1f8819a8eff5b

https://preview.redd.it/czprm0o0ka081.png?width=1280&format=png&auto=webp&s=957ffd2445f545239286c1ea72b09cb11c9a69c2

👍︎ 26
💬︎
📅︎ Nov 18 2021
🚨︎ report
Flock Box DOTS : Flock Box includes implementations of several steering behaviors that can be mixed and matched with NO SCRIPTING REQUIRED. Included behaviors are:Alignment,Cohesion,Separation,Containment,Seek,Pursuit,Arrive,Flee,Follow Leader,Avoidance,Queueand Wander.Individual behaviors can be assetstore.unity.com/pack…
👍︎ 5
💬︎
📅︎ Dec 22 2021
🚨︎ report
script or action to overwrite a Patch My PC default behavior?

We use Patch My PC for third-party application patching. One of the applications requires some additional configurations beyond the basic install/update script from Patch My PC, so we use some custom install/uninstall scripts.

Everything works fine regarding the install and uninstall, but each time the application updates to a newer version, I need to manually change the Deployment Type’s Uninstall string in Configuration Manager (SCCM), and also manually change the Detection Method.

Each time the application updates, those things will revert to the default definition used by Patch My PC. However, I want to use my own custom uninstall command and my own Detection Method.

I checked with Patch My PC and currently they have no mechanism to automatically change those, so I need to continue to do so manually.

Trying to determine if there’s a way I could do this in some sort of automated fashion, possibly something like a Configuration Baseline or a Desired State Configuration. Curious to know if someone has done something similar and how they accomplished it.

👍︎ 11
💬︎
📅︎ Oct 22 2021
🚨︎ report
In Godzilla vs Kong (2021), the on-screen fights were actually not scripted as Godzilla was infamously difficult to work with, causing several cast members to lash out in anger over his unprofessional behavior on set. In an interview with King Kong, he admits that “Ooh-ooh-aah-aah! *beats chest*”.
👍︎ 100
💬︎
📅︎ Oct 16 2021
🚨︎ report
How to add scripted behavior to Halo 3 custom game

I am playing with scripting in Sapien and trying to make a gamemode similar to KOTH where the player(s) holds a position while AI continuously spawn around them. The goal would be to have the hill act as a trigger volume for AI to spawn around while the player tries to gain points without dying. Has anyone been able to successfully combine an HSC script with multiplayer style gamemodes in Halo 3, or know of some resource which has? It's fine if it only works in singleplayer for now.

👍︎ 2
💬︎
👤︎ u/tkpandaman
📅︎ Oct 26 2021
🚨︎ report
Question for someone that knows scripting - feasibility scripting Piston behavior to dampeners?

In real life engineering we have springs and dampeners. A piston that is extending can be considered as a compressed spring decompressing. With the exception of wheels the game lacks an equivalent to dampening which you could consider as a fully extended spring or piston that compresses proportional to the force applied to the end of it.

Keeping it as simple as possible, and putting it in Space Engineers terms, you have the extended piston length and you have the extending force of the piston, the scripted behavior would change to treating that force and length as a spring rate.

Spring rate = force/piston length

Pushing into the piston end with an amount of force equal to the force its set to would collapse it's full length. Pushing into the piston with half the amount of force its set to collapses it half way. As either outside force diminishes the piston is free to extend back out to its set length.

To someone familiar with Space Engineers scripting API how feasible is it to add that kind of behavior to a piston?

👍︎ 8
💬︎
📅︎ Aug 16 2021
🚨︎ report
Script behaviors suddenly changing?

Hey guys, I've got this weird thing going on with autohotkey. I'm a video editor and have a bunch of scripts that help me be more efficient with my work. All of my scripts have been fine for months, now all of a sudden the way they work has changed.

e.g. i have multiple scripts that move my mouse to certain parts of the screen. Before, it would do so instantly, and now the mousemove has slowed down as if you're actual moving the mouse yourself.

I have another script that will bring up certain folders depending on the hotkey I press, and it will search through them. Before it would only open one instance of the same folder, and just activate it if I already had it open. Now it will just open a new folder on matter what.

I don't understand. I haven't changed anything. Haven't updated anything. They've worked for months and now all of a sudden they're starting to act weird. Any advice, or anyone know what's going on? Thanks in advance. :)

👍︎ 3
💬︎
📅︎ Nov 02 2021
🚨︎ report
Whats your script for calling home to parents for behavior?

It's day 2, I'm at a new school, and some of my middle schoolers are testing me. A few were outright defiant and one litterally heckled my presentation and instruction for 43 straight minutes. Called a few parents, but I always end up feeling like I'm not blunt enough with parents and end up rambling and framing things too positive when this shit needs to end. What do you all say when you call home for poor behavior?

👍︎ 5
💬︎
👤︎ u/_crassula_
📅︎ Sep 03 2021
🚨︎ report
Screenshot provided to investigatores a while back. Shows an AggregateIQ script which pulls voter information and combines it with psychological behavior scoring for the purposes of the Ted Cruz presidential campaign. threadreaderapp.com/threa…
👍︎ 52
💬︎
📅︎ Jul 27 2021
🚨︎ report
[A4A] Will you join our ‘Club’? [F4M Format] [Roleplay Audio] [Script Offer] [ASMR Whispering] [Wholesome to Yandere Behavior Girlfriend X Listener] [Adorkable] [Dual Personality] [Laughing] [Seductive Threatening Voice] [One-Shot]

Note: Before using this script to your channel, please go to this link for rules

Incase you missed it, here's a guide of this one-shot and other Roleplay Audio scripts.

Summary: For many weeks, your girlfriend tries to convince you to join her this Friday night with her group of friends. It’s just a normal group hangout, nothing too weird or suspicious or any ulterior motives at all. Just a normal Friday night, well that depends. The definition of 'Normal' is subjective anyways.

(One more One-shot before I move on to the next series, unless you want to see more Slice-Of-Life one shot scripts with your Lover. I want to continue the two series that I've written at the same time but I don’t want to be overwhelmed and just focus on one story at a time. This time, I just want to take my time writing the scripts and have some more thought about it now that my list is growing, because fifteen scripts in thirty days by the time this is uploaded, woof. Anyways here’s another one-shot: enjoy!)

__________

The girlfriend is looking for her boyfriend, she is somewhat nervous to talk to him about this but she knew where exactly to find him in their house. She enters his man-cave knocking first then she just came in without waiting for a response.

“Hi, Baby! There you are. I’ve been looking all over for you.” She said.

‘You know I’ve been here all night right?’ He said.

“Oh you’ve been- you’ve been here all this time? I-I know that, I know that you’ve been here in this house and you haven’t left today. Playing video games and searching on the internet... On your man-cave.” She was stuttering and denies her mistakes by stating the obvious, describing at what she is looking at right now.

‘What the- this isn’t a man cave, this is my Office.’

“Yes it is. It’s a man-cave where all your favorite hobbies are in one cave.”

‘Hey it’s my own personal space of my own world. And it’s an office because this is where I do all my work as well.’

“Call if whatever you want it’s still a man-cave in my eyes. I can’t believe you can stay here all day and not get bored.” She said as she approaches him and brings him to the couch of this room.

‘Oh yeah what about your own woman cave, or whatever it is you girls call it huh? I don’t call you out on that’

... keep reading on reddit ➡

👍︎ 6
💬︎
👤︎ u/FGCTonyIRL
📅︎ Oct 07 2021
🚨︎ report
Maphacking and autocast scripting is a plague in Low Behavior Scores

I understand that people don't care about it, but it's essentially anyone under 7k is going to be stuck having to deal with this. Of course this results in players getting tilted and likely push them further into the abyss.

The guild Racism Incorporated, tag [RACER] is one of the biggest offenders spending all of their time plaguing games with maphacks and autocast scripts. Of course they are also the types of players who will spam all chat with racial slurs and hate speech, but just mute and ignore it. But it's impossible to ignore cheaters because it ruins the game.

👍︎ 36
💬︎
📅︎ May 10 2021
🚨︎ report
Not understanding why my script options are not working correctly, even if I change the order they do not work and output an unexpected behavior. Any help?

I have the following script options:

export parameters=$#

options=$(getopt -l "help,sources-folder:,port:,url:,version:,docker-username:,docker-password:,database-dump:,database-user:,database-password:,database-name:,clean-install,install-composer-module:,deploy,database-root-password:,fix-permissions,verbose,configuration-file:" -o "h,d:,p:,u:,v:" -a -- "$@")
eval set -- "$options"

export clean_install=0
export base_folder=$(pwd)
export sources_folder="$base_folder/sources"
export verbose=0

while true; do
    case $1 in
    -h | --help)
        showHelp
        exit 0
        ;;
    -u | --url)
        shift
        export url=$1
        ;;
    -v | --version)
        shift
        export version=$1
        ;;
    -d | --sources-folder)
        shift
        export sources_folder=$1
        ;;
    -p | --port)
        shift
        export port="$1"
        export base_url="http://127.0.0.1:$port/"
        ;;
    --verbose)
        export verbose=1
        ;;
    --docker-username)
        shift
        export docker_username=$1
        ;;
    --docker-password)
        shift
        export docker_password=$1
        ;;
    --database-dump)
        shift
        export database_dump=$1
        ;;
    --database-user)
        shift
        export database_username=$1
        ;;
    --database-password)
        shift
        export database_password=$1
        ;;
    --database-name)
        shift
        export database_name=$1
        ;;
    --database-root-password)
        shift
        export database_root_password=$1
        ;;
    --install-composer-module)
        shift
        install_composer_module $1
        ;;
    --clean-install)
        shift
        export clean_install=1
        ;;
    --configuration-file)
        shift
        source $1
        ;;
    --deploy)
        deploy
        exit 0
        ;;
    --fix-permissions)
        set_permissions
        exit 0
        ;;
    --)
        shift
        break
        ;;
    esac
    shift
done

echo "port: $port"
echo "clean-install: $clean_install"

This is the content of my configuration-file:

version="2.3.5
... keep reading on reddit ➡

👍︎ 3
💬︎
👤︎ u/FireFausto
📅︎ Aug 17 2021
🚨︎ report
Converting an ES2015 (or later) script for IE: const { amount, behavior } = function();

I am converting a third party script which is ES2015 (or later) so it works with IE. I am not a js expert, but I do hate some customers!

I have converted most of it, there is one line that I am unsure what to change:

const { amount, behavior } = myFunction(parameters);

for which IE says

SCRIPT1010: Expected identifier

myFunction() returns

return {
    amount: relativeNumbers[relTextLower],
    behavior: relativeBehavior[relTextLower] || 0
  }

and I recognize that I might get a new error after I fix this one :)

So, my question is: What is the IE friendly version of const { amount, behavior } = myFunction(parameters);? Thanks!

👍︎ 2
💬︎
👤︎ u/lindymad
📅︎ Jul 27 2021
🚨︎ report
Weird Clojure(script) behavior

I'm getting a bug that seems to be coming from the following odd behavior, and I was wondering if anyone else had encountered it:

(inc nil) => 1

(apply max '()) => nil

(inc (apply max '())) => ##NaN

Anybody know what gives?

👍︎ 5
💬︎
📅︎ Jun 13 2021
🚨︎ report
Are there any plans to add Sticky Window Snapping behavior to kwin without a script?

Hello everyone, I am a frequent user of the Sticky Window Snapping extension (which resizes multiple windows that are snapped together at once). I find this behavior very convenient since I mostly have windows tiled to the sides of the screen.

Sticky Window Snapping is currently the only kwin script I use/need. GNOME and Windows 10 currently support this behavior natively (I find it kinda ironic that GNOME and Windows beat KDE to this) and seems to be popular with their users, so it doesn't seem to be a niche feature.

I would prefer not to rely on a third party script and just use everything from "vanilla" kde, so I would like to know if there's any plans to add this feature or if I should create an issue on KDE's gitlab repo requesting this feature?

Edit I have created a bug report. It is available here.

👍︎ 76
💬︎
👤︎ u/cgprats
📅︎ Mar 22 2021
🚨︎ report
Can you force-spawn the Cybrex homeworld in the L-Cluster, or "What is the behavior of the Cybrex Homeworld Spawn script?"

Upon learning that the next update will guarantee the L-Cluster Terminus system will be a black hole (thus enabling a Matter Decompressor in the Cluster, guaranteed), I want to try a run where I get to the L-Cluster ASAP, then turtle there.

Here's the rundown, done in as few months/years as possible using commands:

  1. Be Determined Assimilators, called the Reapers (any rumors about my existence are insubstatiated).
  2. Use debugtooltip on console to restart until I have a starting location in the vicinity of both an L-Gate and the Cybrex, and ensuring the L-Gate scenario isn't Grey Goo.
  3. Do 5/6 of the Cybrex subquests.
  4. Use commands such as techupdate to blitz through L-Gate insights.
  5. Open the L-Gate, found a colony/habitat within.
  6. Make that location my capital world.
  7. Move my whole species into the L-Gate colony, using commands for influence/energy as necessary.
  8. Delete all of my starbases, yielding all claims on all territory outside the L-Cluster.
  9. Complete the final Cybrex Precursor event, setting into motion the Cybrex homeworld spawning script.

Here's where my question comes into play: Does the spawn script produce the Cybrex Homeworld inside your territory, in the vicinity of your current capital, in the vicinity of your original capital or in the vicinity of a Cybrex-flagged system?

👍︎ 12
💬︎
📅︎ May 10 2021
🚨︎ report
Mech Mk.II script weird behavior.

Hello fellow space engineers,

I am trying to create a mech with the wonderful Mech Mk.II script.

But I am running into weird behavior.

I have created 2 identical legs, (same orientation, rotor placement, limits, velocity etc) but when I issue the walk command they both walk different. 1 normal and 1 like it's ret*rded brother.

the second issue is when I issue the stand command, the legs go to the "center" position but when the center position is reached all the rotors on the legs go from -0.5 to 0.5 velocity until the script reaches it's timeout.

I tried asking it on the workshop page, but it seems that the author is not that active anymore.

can anyone of you point me into a good direction ?

👍︎ 2
💬︎
📅︎ Jun 16 2021
🚨︎ report
Changing Animation Parameter in Udon behavior script

As the title implies, I'm wondering how to change the Animation Parameter bool in a Udon Behavior script. I assumed it would be something such as: Animator.SetBool. such as what I have set up here
https://gyazo.com/139191e81c152c6f06c5f643c3a073fd
But alas this doesn't seem to work, if any of you wrinkle brains can explain to me what I have done wrong, that would be appreciated

👍︎ 3
💬︎
👤︎ u/Prism_Mind
📅︎ Jul 26 2021
🚨︎ report
UdonSharpBehaviour: Creating a snowboard script - Unusual client behavior then kicked

Me and my friends is trying to create a snowboard world.

I am working on the snowboard script, it works and we like. We do know there are still parts that are work in progress.

The problem is:

If I host a world, and my friends joins me, when they try to use the snowboard (script) they will be kicked for "Unusual client behavior", I do not know why. Do anybody know why this might happen?

It does not matter if the other players are in VR or Desktop, they both will get this error.

The full script can be found here

In psydo code it looks like this:

    public class SnowboardMovement : UdonSharpBehaviour
    {

        // Where the user will be teleported to, when they interact with the snowboard  
        public Transform StartPosition;
      
        // Use for resetting   
        private Vector3 spawnPosition;
        private Quaternion spawnRotation;
    
    
        // Ensure you always can jump off the snowboard  
        public KeyCode DesktopJumpOffSnowboardKey = KeyCode.F;

        // Is set if the user is on the board  
        private VRCPlayerApi localUser;

        // Keep track of momentum  
        private Vector2 momentum = Vector2.zero;
        private float gravityMomentum = 0;
    
    
        public void Start()
        {
            spawnPosition = transform.position;
            spawnRotation = transform.rotation;
        }

        public override void Interact()
        {
            if (localUser == null)
            {
                // The user jumps on the snowboard  
                localUser = Networking.LocalPlayer;
    
                // Moves the user and snowboard to the StartPosition
                localUser.TeleportTo(StartPosition.position, StartPosition.rotation);
                transform.position = StartPosition.position;
                transform.rotation = StartPosition.rotation;
                momentum = Vector2.zero;
                gravityMomentum = 0;
            }
            else
            {
                // The user jumps off the snowboard  
                localUser = null;
                lastUsageTime = Time.time;
            }
        }
        // Update is called once per frame  
        void Updat
... keep reading on reddit ➡

👍︎ 11
💬︎
👤︎ u/JavaWolf
📅︎ Mar 14 2021
🚨︎ report
Butterfly African Monarch : Demo Page | YouTube | Support Features • Area roaming butterflies • Many script customization options • Simple UV map, easy to change texture • Easily customize behavior • 365 and 235 tris model • 1024x1024px texture Update 2.3 • Added C# scripts • Im assetstore.unity.com/pack…
👍︎ 3
💬︎
📅︎ Jun 13 2021
🚨︎ report
Silke took everyone from the quest with her from the grave. Is this scripted and common behavior?
👍︎ 9
💬︎
📅︎ Jan 23 2021
🚨︎ report
X-Post- NEED: Behavioral flowchart or script for Aid

I teach a self-contained 8th grade class. I have a 2:1 aid that helps one student academically and another student behaviorally. Not ideal, but what we have.

Problem: Aid over helps and does everything for student with behavior problems, who now uses her instead of doing any work, and the student that needs help academically does not get enough support.

Need: I am in the process of creating a flowchart/script for the aid to use when interacting with the student who has behavior issues to help her manage him and set expectations, but was wondering if there is something like this already out there, or least a template.

Any ideas?

👍︎ 2
💬︎
📅︎ Oct 11 2015
🚨︎ report

Please note that this site uses cookies to personalise content and adverts, to provide social media features, and to analyse web traffic. Click here for more information.