본문 바로가기
반응형

분류 전체보기99

[Python] #1 디스코드 봇 만들기 - 봇 생성 목차 디스코드 봇을 생성하고 서버에 추가할 것입니다. 봇 생성 아래 링크로 접속 후 https://discord.com/developers/applications Discord Developer Portal — API Docs for Bots and Developers Integrate your service with Discord — whether it's a bot or a game or whatever your wildest imagination can come up with. discord.com New Application 클릭 이름을 적고 Create 왼쪽 메뉴에서 Bot 클릭 후 Add Bot Yes, do it! 을 누르면 봇이 추가됩니다. 서버에 추가 왼쪽 메뉴에서 OAuth2 클릭 후 .. 2021. 7. 6.
[Python] #0 디스코드 봇 만들기 - 소개 및 준비 목차 개요 한창 리그 오브 레전드를 많이 했을 때 일반 게임에서 재미로 무작위로 걸리는 챔피언을 선택해 게임을 했었습니다. 라인, 룬, 아이템, 챔피언을 무작위로 추천해주는 디스코드 봇을 만들겠습니다. 이름은 롤 뉴메타 추천 봇으로 하겠습니다. 디스코드 봇을 만드는 방법에는 여러가지가 있는데 그중에서 discord.py를 사용하여 만들겠습니다. 준비 디스코드 계정 만들기 https://discord.com/ Discord | Your Place to Talk and Hang Out Discord is the easiest way to talk over voice, video, and text. Talk, chat, hang out, and stay close with your friends and com.. 2021. 7. 5.
[C++] Windows Form Class 사용 클래스를 만들어 내용을 Label에다 넣어보겠습니다. 혼자서 찾아보고 만들었었던 것이라 이 방법이 맞는 방법이 아닐 수도 있습니다. 헤더 파일을 만들어줍니다. 이름은 Test로 하겠습니다. 헤더 파일을 열어 Person 이라는 클래스를 만들겠습니다. 생성자, getter, setter를 만듭니다. #pragma once using namespace System; namespace Test { public ref class Person { private: String^ name; int age; public: Person(String^ name, int age) { this->name = name; this->age = age; } String^ getName() { return name; } int ge.. 2021. 7. 2.
[CSS] CSS Diner - CSS Selector 연습하기 (Level 16 ~ Level 32) 목차 CSS Selector에 대해 연습할 수 있는 곳입니다. https://flukeout.github.io/ CSS Diner A fun game to help you learn and practice CSS selectors. flukeout.github.io CSS Diner (Level 1 ~ Level 15)에 대한 글입니다. [CSS] CSS Diner - CSS Selector 연습하기 (Level 1 ~ Level 15) 목차 https://flukeout.github.io/ CSS Diner A fun game to help you learn and practice CSS selectors. flukeout.github.io Level 1 plate Level 2 bento Level .. 2021. 6. 30.
728x90
반응형