forked from po-devs/rpg-scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscripts.js
67 lines (55 loc) · 1.46 KB
/
scripts.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
function require(file) {
return sys["import"](file);
}
function User(id)
{
this.id = id;
this.team = null;
this.channel = null;
}
require ("utilities.js");
require ("printer.js");
require ("teamChanger.js");
commands = require ("commands.js");
SESSION.identifyScriptAs("RPG Script");
//SESSION.registerGlobalFactory(POGlobal);
SESSION.registerUserFactory(User);
//SESSION.registerChannelFactory(POChannel);
/* Function to clear chat - endless text
may lag the server at one point. */
lastMemUpdate = sys.time();
function testClearChat() {
if (parseInt(sys.time(), 10) - lastMemUpdate > 1000) {
sys.clearChat();
lastMemUpdate = parseInt(sys.time(), 10);
}
}
poScripts = ({
afterLogIn : function(source) {
var user = SESSION.users(source);
user.print("Abra", "Type /commands to get a list of commands!");
user.print("blank", "");
}
,
beforeBattleMatchup : function() {
sys.stopEvent();
}
,
beforeChatMessage : function(src, msg, chan) {
SESSION.users(src).channel = chan;
if (msg.substr(0, 1) === "/") {
sys.stopEvent();
testClearChat();
var data, command, tar;
var pos = msg.indexOf(' ');
if (pos !== -1) {
command = msg.substring(1, pos).toLowerCase();
data = msg.substr(pos+1);
tar = sys.id(data);
} else {
command = msg.substr(1).toLowerCase();
}
commands.handleCommand(src, command, data, tar);
}
}
});