Skip to content

Instantly share code, notes, and snippets.

@alexguirre
alexguirre / Speeches.cs
Last active April 21, 2024 19:11
GTA V Speeches List
This file has been truncated, but you can view the full file.
// Speeches List by alexguirre
// Code in C# using RAGEPluginHook
// Usage example:
// Speech.S_M_Y_SWAT_01_WHITE_FULL_01.GENERIC_CURSE_HIGH_03.PlayOn(ped, SpeechModifier.Force);
namespace Put.Your.Namespace.Here
{
using Rage;
internal struct Speech
@adrianseeley
adrianseeley / Ease.cs
Created December 9, 2012 00:17
C# Ease Library :: a C# Snippet for Easing
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace YOUR_NAMESPACE_HERE_BRO
{
static class Ease
{
public static float LINEAR(float CurrentStep, float TotalSteps, float StartValue, float ValueChange)