I have t say I am suprized to see 3 posts already after one day, you guys are great. grin

Thankyou so much for doing this, I didn't think anybody would put so much time into this. The code that I have for dialog two is below, what I have so far, anyway:
Code:
dialog Info {
  title "Wolf Roleplay IC/OOC Info Center"
  size -1 -1 600 629
  option pixels
  tab "IC Information (Roleplay Character)", 44, 4 90 512 307
  tab "OOC Information (Real Life)", 1
  box "IC Info (Character-Based)", 42, 16 116 468 236, tab 44
  box "OOC Info (Real-Life)", 22, 16 116 459 236, tab 1
  box "View", 2, 10 10 331 72
  combo 3, 189 24 135 70, drop
  text "Name:", 5, 44 148 32 16, tab 44 right
  text "Age:", 6, 266 146 24 18, tab 44 right
  text "Desc:", 7, 46 210 30 18, tab 44 right
  text "History:", 8, 36 258 40 18, tab 44 right
  text "Pack:", 9, 48 168 28 18, tab 44 right
  text "Rank:", 10, 46 190 30 16, tab 44 right
  edit "", 11, 76 146 186 20, tab 44
  edit "", 12, 290 146 28 20, tab 44
  edit "", 13, 76 256 242 74, tab 44 autovs multi
  edit "", 14, 76 208 242 48, tab 44 autovs multi
  edit "", 15, 76 166 242 20, tab 44
  edit "", 16, 76 188 242 20, tab 44
  text "Address:", 17, 20 188 46 16, tab 1 right
  text "Name:", 18, 34 168 32 16, tab 1 right
  text "Age:", 19, 196 146 26 16, tab 1 right
  text "Email:", 20, 36 210 30 16, tab 1 right
  text "Notes:", 21, 32 232 34 16, tab 1 right
  icon 24, 332 146 135 183, tab 44, 0 tab 44
  text "Nick:", 23, 42 146 24 16, tab 1 right
  edit "", 25, 66 144 126 20, tab 1 autohs
  edit "", 26, 66 166 182 20, tab 1 autohs
  edit "", 27, 66 186 182 20, tab 1 autohs
  edit "", 28, 66 208 182 20, tab 1 autohs
  edit "", 29, 222 144 26 20, tab 1
  edit "", 30, 66 230 242 84, tab 1 autovs multi
  icon 31, 320 144 140 172, C:\Downloads\Ryan\mefordialog.jpg, 0 tab 1
  button "Whois", 32, 250 144 58 20, tab 1
  button "Button", 33, 250 166 58 20, tab 1
  button "Chat", 34, 250 186 58 20, tab 1
  button "Email", 35, 250 208 58 20, tab 1
  button "Ok", 36, 381 396 64 26, ok
  button "Cancel", 37, 445 396 64 26, cancel
  radio "Female", 38, 393 322 54 18, tab 1
  radio "Male", 39, 331 323 54 16, tab 1
  text "85x134", 40, 344 126 38 14, tab 1
  button "Save", 41, 106 358 292 24
  button "Add", 4, 124 22 64 24
  button "View", 43, 58 22 66 24
  edit "Edit", 46, 66 319 242 20, tab 1
  text "URL:", 45, 41 320 25 17, tab 1 right
}


Ok apparently there is a problem with the dialog. I'd tried to preview it, which didn't work, so I posted the code into mirc and tried to run it. Came up with this error message:
* /dialog: 'address' error loading icon 'tab 44'

Thats the first tab, and like I said, it's not finished. I still need to put a few buttons on and organize/align things. Once we have that done, we can work on the 'brain' of the dialog. I have no idea how to do it. The reason I mentioned hash tables was because I see them in most dialogs. I've been thinking about how you could change the actual visual code with a /did command. (using the /did command to make words on the actual dialog change. Those words of course being the View by: Rank/Nick/Pack) The first thing I'd like to get working is the hard part, the View by: part and combo box modes. Basically get it to work like an empty Address book.

On Response to Question #3:
Serious?! Not possible? Eh I guess we'll cross that bridge when we get there.

On Responses to Question #1:
Thanks guys, I'll keep all the codes in a notepad file but the third one worked great, my bot-command help files are up and running. grin There is a problem, however with some of the scripts i made help files for. One of them is a simple 8-ball script for entertainment. It's just being retarded. I've gotten really frustrated with it, because it's so simple and I still can't get it to work! The codes are short (there are two different versions and they both don't work):
Code:
;Script 1
ON *:TEXT:.8ball*:#: { 
  /play $chan -r Games\ball.txt 1000
}
;Script 2
ON 1:TEXT:!8ball*:#: {
  /msg $chan 9,1 $read(Games\ball.txt)
}


The filepath is correct, I checked it. frown