Reply
 
Thread Tools Display Modes
Unread 06-08-11, 12:42 PM   #1
Mars85
Zombie
AddOn Author - Click to view addons
Join Date: Jun 2011
Posts: 4
Hi,

thanks for the information. Are the fields listed all which are supported? Is there no dependency or something like that?
Mars85 is offline   Reply With Quote
Unread 06-15-11, 06:03 PM   #2
ninioautista
Zombie
Join Date: Jun 2011
Posts: 4
just fixed =)

Last edited by ninioautista : 06-15-11 at 06:09 PM.
ninioautista is offline   Reply With Quote
Unread 06-15-11, 07:11 PM   #3
Dolby
I am the passenger
 
Dolby's Avatar
Premium Member
Riftui Admin
Join Date: Jun 2011
Posts: 58
Quote:
Originally Posted by Mars85 View Post
Hi,

thanks for the information. Are the fields listed all which are supported? Is there no dependency or something like that?
These are the known fields for the riftAddon.toc http://wiki.riftui.com/RiftAddon.toc. I don't see anything for dependency, something to bring up to ZorbaTHut.
Dolby is offline   Reply With Quote
Unread 10-03-11, 06:18 PM   #4
tonyis3l33t
Zombie
 
tonyis3l33t's Avatar
Join Date: Oct 2011
Posts: 3
a nice little kickstart, thanks. Any other resources that would help one write addons? I saw the author resource thread, and I'm considering reading the Programming in Lua 2nd Edition...anything else out there?

p.s. Hi Dolby =)


EDIT: Also wanted to add the only programming experience is an Introduction to Programming course I took at DeVry recently. We mostly focused on VBS & SQL.... but writing addons for EQ2, WoW, and now RIFT has always peaked my interests.

Last edited by tonyis3l33t : 10-03-11 at 06:40 PM. Reason: moar stuff
tonyis3l33t is offline   Reply With Quote
Unread 10-03-11, 06:25 PM   #5
Sunspots
Claw of Regulos
 
Sunspots's Avatar
AddOn Author - Click to view addons
Join Date: Jul 2011
Posts: 23
Quote:
Originally Posted by Dolby View Post
These are the known fields for the riftAddon.toc http://wiki.riftui.com/RiftAddon.toc. I don't see anything for dependency, something to bring up to ZorbaTHut.
It's just commented out for the example.
Code:
-- This line would set up dependencies with several other addons.
--[[
Dependencies = {
  LibUnitChange = {"required", "before"}, -- LibUnitChange must be installed for this to work, and must be loaded before this addon is loaded.
  Visualizer = {"required"}, -- Visualizer must be installed for this to work. It may be loaded either before or after this addon.
 
  SomeLibrary = {"required"}, -- Embedded libraries are not added to the dependencies automatically. If the embedded library fails to load due to a conflict, your addon will still load unless it's set as a required dependency.
 
  OptionalHelper = {"optional", "before"}, -- This addon is optional, but if it's loaded, it must be loaded before this addon is loaded.
  SomethingThatNeedsToBeHooked = {"optional", "after"}, -- This addon is optional, but if it's loaded, it must be loaded *after* this addon is loaded.
  DataHelper = {"optional"},  -- This addon is optional and we don't care about load order.
}
]]
Sunspots is offline   Reply With Quote
Unread 10-04-11, 12:30 PM   #6
Rithious
Zombie
 
Rithious's Avatar
Join Date: Oct 2011
Posts: 4
Add on

I was looking through addons and i have yet to find what I'm looking for. I was thinking about making it myself but i don't know how to write the program. I wanted to do an all in 1 inventory. Is there someone that could help me with this, perhaps explain to me how to do this? I have gotten so use to this with all the MMO's i have played, it's actually kind of irritating not having it in Rift. Thanks
Rithious is offline   Reply With Quote
Unread 10-06-11, 08:26 AM   #7
Aieny
Veiled Ripper
 
Aieny's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2011
Posts: 40
We can't do anything with the inventory yet, as the API for it hasn't been developed. Rest assured, though, that this is coming, and Addons like this will be forthcoming.
__________________
Lua Code:
  1. local function signature()
  2.     print("Aieny Celenovia")
  3.     print("www.riftcrafter.com")
  4. end
Aieny is offline   Reply With Quote
Unread 10-17-11, 10:49 AM   #8
Griz
Zombie
Join Date: Oct 2011
Posts: 1
Very useful starter, thank you.

I noticed a possible spelling error that was causing the addon not to register. The line in the RiftAddon.toc file:

Enviroment = "1.3" I think should read:

Environment = "1.3"

I have made the minor change (hope that was ok?)
Griz is offline   Reply With Quote
Unread 11-04-11, 03:57 AM   #9
Syndic
Zombie
Join Date: Nov 2011
Posts: 1
Quote:
Originally Posted by Rithious View Post
I was looking through addons and i have yet to find what I'm looking for. I was thinking about making it myself but i don't know how to write the program. I wanted to do an all in 1 inventory. Is there someone that could help me with this, perhaps explain to me how to do this? I have gotten so use to this with all the MMO's i have played, it's actually kind of irritating not having it in Rift. Thanks
This seems to be the number 1 request I've noticed for an add-on. I would love one myself, to the point I would love to look into it myself, not sure how far I'll get though, have the same hurdles as yourself.
As mentioned above the only reason i could see you haven't seen this is the functions just aren't there.
Syndic is offline   Reply With Quote
Reply

Go BackRiftui » Developer Discussions » Tutorials & Other Helpful Info. » Creating your own AddOn - Step by Step


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off