Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 11/13/21 in all areas

  1. Version 1.2.0

    1750 downloads

    Very simple but complete chat written in vanilla js with arrows history navigation, time stamp, user colors prevention, character count, lower cased commands and scrollbar. Ragemp chat api works perfectly Settings Edit settings in advanced-chat/js/main.js Install Extract in to advanced-chat folder and copy it to client_packages Add this somewhere client-side. (Eg: index.js) mp.gui.chat.show(false); //Disables default RageMP Chat const chat = mp.browsers.new('package://advanced-chat/index.html'); chat.markAsChat(); Add this somewhere server-side (Eg: index.js) mp.events.add("playerChat", (player, message) => { mp.players.broadcast(`${player.name}: ${message}`); });
    1 point
  2. Something I put together after getting partially annoyed at while loops and doing math on a per-section basis; And decided to create a sub-system entirely dedicated to moving elements, scaling elements and rotating elements; So far these are the "Elements" that are either completed to a point I'm happy with or at a point where they partially function as intended.. Currently its either a gradual increase or decrease in position or scale; I do intend to add the ability to use Curves on a per-element basis; But that's not something I consider a priority currently. Here's a video https://streamable.com/sfx3xb Shown Elements - Text - Sprite - "Spinner", because I got bored and ADHD kicked in and I made it. There is a "Rectangle" element, but frankly its boring... Its just a box. Most elements scale and position based on the user resolution and safezone, so should always be "Rendered" on screen.
    1 point
×
×
  • Create New...