Jump to content

floppy_pancakes

Member
  • Content Count

    3
  • Joined

  • Last visited

  • Medals

Everything posted by floppy_pancakes

  1. Not sure if this is the proper place to release such a script, but if not, just move it. I needed a super simple file to remove whitespace from a string, and google found nothing. So if it exists, it's properly done better than mine. REGARDLESS! Here is mine in case anyone else needs it! Enjoy! :) /* File: REV_fnc_removeWhitespace Author: Floppy Pancakes Usage: ["string here"] call REV_fnc_removeWhitespace Returns: "stringhere" License: My words. Use freely, leave credit. Simple. :) */ private ["_stringToParse"]; _originalString = _this select 0; _stringToParse = toArray _originalString; while {32 IN _stringToParse} do { _index = _stringToParse find 32; _stringToParse deleteAt _index; }; _finalString = toString _stringToParse; _finalString;
  2. floppy_pancakes

    Script Release: Remove Whitespace

    literally remembered about split and join a few minutes after I did it... :( Hopefully my example will still be a good example for others in how they can accomplish other tasks. :)
  3. I saw the fix for the falling issue, and haven't been able to try it yet, but I wanted to ask if you knew of any other issues with your character just randomly falling/diving? I have a mission on Cherno, and at the most random of times, you'll see people diving to the ground, and nothing shows up in my RPT logs. Thanks!
×