fixerino?
This commit is contained in:
parent
8749925bc3
commit
e99f3d65fa
18
README.md
18
README.md
@ -11,15 +11,11 @@ A high-performance bleeding edge Discord library in Zig, featuring full API cove
|
|||||||
const std = @import("std");
|
const std = @import("std");
|
||||||
const Discord = @import("discord");
|
const Discord = @import("discord");
|
||||||
const Shard = Discord.Shard;
|
const Shard = Discord.Shard;
|
||||||
const Intents = Discord.Intents;
|
|
||||||
|
|
||||||
const INTENTS = 53608447;
|
|
||||||
|
|
||||||
var session: *Discord.Session = undefined;
|
var session: *Discord.Session = undefined;
|
||||||
|
|
||||||
fn ready(_: *Shard, payload: Discord.Ready) !void {
|
fn ready(_: *Shard, payload: Discord.Ready) !void {
|
||||||
std.debug.print("logged in as {s}\n", .{payload.user.username});
|
std.debug.print("logged in as {s}\n", .{payload.user.username});
|
||||||
// cache demonstration TODO
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn message_create(_: *Shard, message: Discord.Message) !void {
|
fn message_create(_: *Shard, message: Discord.Message) !void {
|
||||||
@ -48,9 +44,21 @@ pub fn main() !void {
|
|||||||
@panic("DISCORD_TOKEN not found in environment variables");
|
@panic("DISCORD_TOKEN not found in environment variables");
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const intents = comptime blk: {
|
||||||
|
var bits: Discord.Intents = .{};
|
||||||
|
bits.Guilds = true;
|
||||||
|
bits.GuildMessages = true;
|
||||||
|
bits.GuildMembers = true;
|
||||||
|
// WARNING:
|
||||||
|
// YOU MUST SET THIS ON DEV PORTAL
|
||||||
|
// OTHERWISE THE LIBRARY WILL CRASH
|
||||||
|
bits.MessageContent = true;
|
||||||
|
break :blk bits;
|
||||||
|
};
|
||||||
|
|
||||||
try session.start(.{
|
try session.start(.{
|
||||||
|
.intents = intents,
|
||||||
.authorization = token,
|
.authorization = token,
|
||||||
.intents = Intents.fromRaw(INTENTS),
|
|
||||||
.run = .{ .message_create = &message_create, .ready = &ready },
|
.run = .{ .message_create = &message_create, .ready = &ready },
|
||||||
.log = .yes,
|
.log = .yes,
|
||||||
.options = .{},
|
.options = .{},
|
||||||
|
@ -28,7 +28,10 @@
|
|||||||
.url = "https://git.yuzucchii.xyz/yuzucchii/zlib/archive/master.tar.gz",
|
.url = "https://git.yuzucchii.xyz/yuzucchii/zlib/archive/master.tar.gz",
|
||||||
.hash = "zlib-0.1.0-AAAAALW6QABbti7dQfKuK0IQb-xdcp3SI8zdTvs5ouUD",
|
.hash = "zlib-0.1.0-AAAAALW6QABbti7dQfKuK0IQb-xdcp3SI8zdTvs5ouUD",
|
||||||
},
|
},
|
||||||
.websocket = .{ .url = "https://github.com/karlseguin/websocket.zig/archive/refs/heads/master.zip", .hash = "websocket-0.1.0-ZPISdYBIAwB1yO6AFDHRHLaZSmpdh4Bz4dCmaQUqNNWh" },
|
.websocket = .{
|
||||||
|
.url = "https://github.com/karlseguin/websocket.zig/archive/refs/heads/master.zip",
|
||||||
|
.hash = "websocket-0.1.0-ZPISdbhVAwCL-zrOIFLKLr6CHtwV92raAnObudtbYQjJ",
|
||||||
|
},
|
||||||
},
|
},
|
||||||
.paths = .{
|
.paths = .{
|
||||||
"build.zig",
|
"build.zig",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user