Skip to content

Instantly share code, notes, and snippets.

-- EzDismount : A quick and dirty dismounting mod, useful for PVP or herb/ore collecting
-- By Gaddur of the Eonar Server
-- Modified v2.01 by nathan
-- Added Turtle support by Grender (Rakkata) from Elysium
local EzDClass
local EzDPlayer
EzDismount_ver = "v2.04";
EzDismount_fullver = ("EzDismount " .. EzDismount_ver);
King_of_Dragons jotted down notes from sit-down at Blizzards WoW preview:
Features/Misc
hour and a half to go from bottom to top of Azeroth
2 continents, Azeroth and Kalimdor
PVP will be consensual, 90% of world is non-pvp, 10% is
the Stranglethorn Arena will be player pvp. Players can buy tickets to fight dragons, hyrdras, etc.
Multiple players can fight a monster at once, but there will be limits.
Team battles, either groups vs groups or groups vs monster(s)
Guild battles planned, will be advertise
@GrenderG
GrenderG / print_log.c
Created February 6, 2024 12:06
Print log line with GBDK (needs <gbdk/console.h> and <string.h>).
void print_log(const char *__s) {
size_t max_length = 19;
char __trimmed[20]; // 19 characters + 1 for null terminator.
size_t len = strlen(__s);
size_t i;
// Copy characters up to max_length or until the end of the string.
for (i = 0; i < max_length && i < len; ++i) {
__trimmed[i] = __s[i];
}