pai1ne13
Active member
- Joined
- Jan 2, 2019
- Messages
- 59
- Reaction score
- 4
Hello, i have a problem.I got started with this plugin, I've worked in c ++ before.I want when i press the "HOME" key , this .asi need to type in chat "hello". how can i fix it?
C++:
#include "plugin.h"
using namespace plugin;
class sampproject {
public:
sampproject() {
if (KeyPressed(VK_HOME))
{
Message("/vw 33");
}
}
}_sampproject;