Skip to content
This repository was archived by the owner on Sep 5, 2024. It is now read-only.

Commit 5a37e6a

Browse files
committed
Release 1.0.1
1 parent e618103 commit 5a37e6a

3 files changed

Lines changed: 21 additions & 23 deletions

File tree

config.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
config = {
22
name = 'Raphael\'s Library',
3-
version = '1.0.0',
3+
version = '1.0.1',
44
windbot = '1.2.2',
55

66
files = {

dist/Raphael.lua

Lines changed: 18 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,16 @@
1-
-- Raphael's Library v1.0.0
2-
-- Last Updated: 01/01/2014 - 23:40 UTC
1+
-- Raphael's Library v1.0.1
2+
-- Last Updated: 06/01/2014 - 01:35 UTC
33
-- Released for WindBot v1.2.2
44

5-
RAPHAEL_LIB = '1.0.0'
5+
RAPHAEL_LIB = '1.0.1'
66
print("Raphael's Library Version: " .. RAPHAEL_LIB)
77

88

99
--[[
10-
* Changelog v1.0.0
10+
* Changelog v1.0.1
1111
*
12-
* - Added tostring.
13-
* - Added userdatastringformat.
14-
* - Added requires.
15-
* - Added toyesno, toonezero and toonoff.
16-
* - Added string.starts, string.ends, string.begin and string.finish.
17-
* - Added some useful patterns.
18-
* - Removed getnamecolor.
19-
* - Minor internal changes.
12+
* - Fixed typos.
13+
* - Completed CUSTOM_TYPES constant.
2014
*
2115
--]]
2216

@@ -77,16 +71,18 @@ CUSTOM_TYPE = {
7771
MESSAGE = {'content', 'level', 'sender', 'type'},
7872
PROJECTILE = {'type', 'fromx', 'fromy', 'tox', 'toy', 'time'},
7973
EFFECT = {'type', 'posx', 'posy', 'time'},
80-
ANIMATEDTEXT = {'type', 'content', 'posx', 'posy', 'time'},
81-
RECTANGLE = {'left', 'top', 'bottom', 'right', 'width', 'height', 'centerx', 'centery'},
74+
ANIMTEXT = {'type', 'content', 'posx', 'posy', 'time'},
75+
RECT = {'left', 'top', 'bottom', 'right', 'width', 'height', 'centerx', 'centery'},
8276
POINT = {'x', 'y'},
83-
ITEMDATA = {},
84-
SUPPLYITEM = {},
85-
LOOTINGITEM = {},
86-
VIPNODE = {},
87-
MOUSEINFO = {},
88-
DEATHTIMER = {},
89-
PLAYERINFO = {}
77+
ITEMDATA = {'name', 'id', 'sellprice', 'buyprice', 'weight', 'isbank', 'isclip', 'isbottom', 'istop', 'iscontainer', 'iscumulative', 'isforceuse', 'ismultiuse', 'iswrite', 'iswriteonce', 'isliquidcontainer', 'isliquidpool', 'isunpass', 'isunmove', 'isunsight', 'isavoid', 'isnomovementanimation', 'istake', 'ishang', 'ishooksouth', 'ishookeast', 'isrotate', 'islight', 'isdonthide', 'istranslucent', 'isfloorchange', 'isshift', 'isheight', 'islyingobject', 'isanimatealways', 'isautomap', 'islenshelp', 'isfullbank', 'isignorelook', 'isclothes', 'ismarket', 'ismount', 'isdefaultaction', 'isusable', 'ignoreextradata', 'enchantable', 'destructible', 'hasextradata', 'height', 'sizeinpixels', 'layers', 'patternx', 'patterny', 'patterndepth', 'phase', 'walkspeed', 'textlimit', 'lightradius', 'lightcolor', 'shiftx', 'shifty', 'walkheight', 'automapcolor', 'lenshelp', 'defaultaction', 'clothslot', 'marketcategory', 'markettradeas', 'marketshowas', 'marketrestrictprofession', 'marketrestrictlevel', 'durationtotalinmsecs', 'specialeffect', 'specialeffectgain', 'category', 'attack', 'attackmod', 'hitpercentmod', 'defense', 'defensemod', 'armor', 'holyresistmod', 'deathresistmod', 'earthresistmod', 'fireresistmod', 'iceresistmod', 'energyresistmod', 'physicalresistmod', 'lifedrainresistmod', 'manadrainresistmod', 'itemlossmod', 'mindmg', 'maxdmg', 'dmgtype', 'range', 'mana'},
78+
SUPPLYDATA = {'name', 'id', 'weight', 'buyprice', 'leaveat', 'count', 'rule', 'rulevalue', 'destination', 'category', 'uptocount', 'downtocap', 'amountbought', 'amounttobuy', 'amountused'},
79+
LOOTINGDATA = {'name' ,'id' ,'weight' ,'sellprice' ,'count' ,'action' ,'alert' ,'condition' ,'conditionvalue' ,'destination' ,'category' ,'amountlooted' ,'haslessthan' ,'caphigherthan'},
80+
VIP = {'name', 'id', 'icon', 'isonline', 'notify'},
81+
MOUSEINFO = {'x', 'y', 'z', 'id', 'count'},
82+
DEATHTIMER = {'timeofdeath', 'target', 'killer', 'time'},
83+
PLAYERINFO = {'name', 'guild', 'voc', 'vocation', 'vocshort', 'priority', 'status', 'time', 'level', 'comment'},
84+
NAVPING = {'time', 'color', 'glowcolor', 'posx', 'posy', 'posz'},
85+
NAVTARGET = {'name', 'posx', 'posy', 'posz', 'time', 'color', 'glowcolor', 'isleader', 'isfriend', 'isenemy', 'isneutral', 'team', 'teamname', 'creature', 'realname', 'id', 'mp', 'maxmp', 'voc', 'icon'}
9086
}
9187

9288

@@ -117,7 +113,7 @@ local KEYS = {
117113
DOWNARROW = 0x28,
118114
SELECT = 0x29,
119115
PRINT = 0x2A,
120-
ExECUTE = 0x2B,
116+
EXECUTE = 0x2B,
121117
PRINTSCREEN = 0x2C,
122118
INSERT = 0x2D,
123119
DELETE = 0x2E,

log/changelog-1.0.1.log

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
* - Fixed typos.
2+
* - Completed CUSTOM_TYPES constant.

0 commit comments

Comments
 (0)