Name:
T
Alias:
Telic
Country:
City:
Age:
38
Sex:
Male
Public URL:
my.curse.com/users/telic/
Website:
Interests:
Badges:
(No Badges Yet)
About Me:

My Activity

2008-07-18
2008-07-03
2008-06-14
2008-05-23
2008-05-17
2008-05-05
2008-05-04
2008-04-26
2008-04-20
2008-04-19
RSS

Add Your Comment

avatar
6 days, 2 hours ago

Telic,

I've been using Alpha map for a few weeks now and enjoy it but I have a problem in the BGs. When I enter one, the map displays two sets of icons. One is overlayed on the map correctly, the other set is offset to the left by approx. 1 inch. It's pretty annoying. Any ideas about what might be causing it?

avatar
5 months, 1 week ago

Hey Telic,
I think a very good feature for your NotesUNeed project would be book scanning and logging. This would be an excellent addition for the NotesUNeed project.

Here is some semi-working code I composed. I hope you're able to fix it and implement it into your mod.


function AddBook()
book = {}
book[1] = ItemTextGetItem();
if ItemTextGetCreator() == nil then else
isMail = true;
book[2] = ItemTextGetCreator();
end
itemPage = 1;
book[3] = ItemTextGetText();
while ItemTextHasNextPage() == 1 do
itemPage = itemPage + 1;
ItemTextNextPage();
book[3 + itemPage] = ItemTextGetText();
end -- overflows
CloseItemText();
end

function AddBook()
book = {}
book[1] = ItemTextGetItem();
if ItemTextGetCreator() == nil then else
isMail = true;
book[2] = ItemTextGetCreator();
end
itemPage = 1;
book[3] = ItemTextGetText();
while ItemTextHasNextPage() == 1 do
itemPage = itemPage + 1;
ItemTextNextPage();
book[3 + itemPage] = ItemTextGetText();
end -- overflows
CloseItemText();
end

Events associated with text items:


"ITEM_TEXT_BEGIN"
Category: Item

Fired when an items text begins displaying

"ITEM_TEXT_CLOSED"
Category: Item

Fired when the items text has completed its viewing and is done.

"ITEM_TEXT_READY"
Category: Item

Fired when the item's text can continue and is ready to be scrolled.


"ITEM_TEXT_BEGIN"
Category: Item

Fired when an items text begins displaying

"ITEM_TEXT_CLOSED"
Category: Item

Fired when the items text has completed its viewing and is done.

"ITEM_TEXT_READY"
Category: Item

Fired when the item's text can continue and is ready to be scrolled.

Enjoy!
Galinaros