Search found 4 matches
- Mon Feb 13, 2012 11:26 am
- Forum: Userfunctions, waypoint scripts, etc.
- Topic: Malatinas Goblins by Bot_romka
- Replies: 58
- Views: 34100
Re: Malatinas Goblins by Bot_romka
Why when IT activates the fly giv es me a crash could be that I have to update swim function? :S
- Sat Jun 11, 2011 9:48 pm
- Forum: Runes of Magic
- Topic: Bagcleanerseller, a temporary solution to TABLE ID bug?
- Replies: 12
- Views: 6957
Re: Bagcleanerseller, a temporary solution to TABLE ID bug?
Really nice addon!!!! It works perfect 
- Sat Jun 11, 2011 9:45 pm
- Forum: Announcements
- Topic: Notice: RoM-bot users: Update your MicroMacro installation.
- Replies: 11
- Views: 38080
Re: Notice: RoM-bot users: Update your MicroMacro installati
Hi!!
Loading items tables.
100% [**************************************************]
Wrong value returned in update of item id: 202904
Wrong value returned in update of item id: 202435
Wrong value returned in update of item id: 202902
Wrong value returned in update of item id: 202506
Wrong value ...
Loading items tables.
100% [**************************************************]
Wrong value returned in update of item id: 202904
Wrong value returned in update of item id: 202435
Wrong value returned in update of item id: 202902
Wrong value returned in update of item id: 202506
Wrong value ...
- Sat Jun 11, 2011 11:49 am
- Forum: Announcements
- Topic: Notice: RoM-bot users: Update your MicroMacro installation.
- Replies: 11
- Views: 38080
Re: Notice: RoM-bot users: Update your MicroMacro installati
Here's the fixed version of the function:
Code:
function table.copy(_other)
local t = {};
for i,v in pairs(_other) do
if type(v) == "table" then
t = table.copy(v)
else
t = v;
end
end
return t;
end
Hi there!!!
I checked the code inside the table addon, I have those lines exactly as ...
Code:
function table.copy(_other)
local t = {};
for i,v in pairs(_other) do
if type(v) == "table" then
t = table.copy(v)
else
t = v;
end
end
return t;
end
Hi there!!!
I checked the code inside the table addon, I have those lines exactly as ...