Library for easy timer use
You can install the "RTimer" library in two ways:
- Using sampctl: You can install the library using the sampctl package manager. Simply run the following command in the terminal:
sampctl package install Ramon-Sd/RTimer
- Using Git: You can clone the library's Git repository and manually add it to your project. Run the following command in the terminal:
git clone https://github.com/Ramon-Sd/RTimer.git
Then, include the "RTimer.inc" include file in your code:
#include "RTimer.inc"
- ...
- ...
#include "RTimer.inc"
DefTimer:PrintTest() {
printf("Test");
return 1;
}
public OnGameModeInit() {
Timer_Set("PrintTest", 1000, true);
return 1;
}
public OnGameModeExit() {
Timer_Kill("PrintTest");
return 1;
}
main() {
printf("RTimer -> Test Script : Started!");
return 0;
}
This project is licensed. See the LICENSE file for more details.