Skip to content

Instantly share code, notes, and snippets.

View aveao's full-sized avatar
🤔
delete this feature

ave aveao

🤔
delete this feature
View GitHub Profile
@aveao
aveao / CATS.user.js
Last active September 6, 2016 11:37
// ==UserScript==
// @name CATS
// @namespace ardaozkal
// @author ardaozkal
// @description Cool Anti Troll Script
// @include *
// @version 1.1
// @grant none
// ==/UserScript==
@aveao
aveao / getlinks.cs
Created September 9, 2015 21:12
Social Media Downloader C# (dirty code, hobby project)
@aveao
aveao / SmallTrainer.cs
Created July 25, 2015 17:16
First version of DankNet Menu
//http://github.com/ardaozkal/DankNet-GTAV is current version
//This one took me about 15 mins to write, then I turned this into a menu, which ended up being the (arguably and self claimed) best .Net menu.
using System;
using GTA;
using GTA.Math;
using GTA.Native;
using System.Windows.Forms;
public class SmallTrainer : Script
@aveao
aveao / from-level-0-to-specified.cs
Last active July 17, 2016 16:00
Steam Level/Price calculator
int SteamLevel = 1111; //edit this as you want
double PricePerBadge = 0.4; //change this for yourself
double price = 0; //don't touch
for (int i = 0; i < SteamLevel; i++)
{
price += (Math.Floor((double)(i/10))+1)*PricePerBadge;
}
Console.WriteLine(price.ToString());
@aveao
aveao / ToString
Created December 20, 2014 20:21
int/decimal etc to string (char) in C (especially for pebble)
/* preferred itoa - good for any base */
char *
itoa (int value, char *result, int base)
{
// check that the base if valid
if (base < 2 || base > 36) { *result = '\0'; return result; }
char* ptr = result, *ptr1 = result, tmp_char;
int tmp_value;