about summary refs log tree commit diff stats
path: root/data/maps/the_bearer/rooms/Green Vegetable (View).txtpb
diff options
context:
space:
mode:
authorStar Rauchenberger <fefferburbia@gmail.com>2025-09-27 11:59:17 -0400
committerStar Rauchenberger <fefferburbia@gmail.com>2025-09-27 11:59:17 -0400
commitfeb89a44ddf5f93bc476ca29cd02257aea47dc06 (patch)
treebcf34e69a481450864911f6dc35f6117eded5fbc /data/maps/the_bearer/rooms/Green Vegetable (View).txtpb
parentb9147997260a6e9ebe291353978830c8741711b9 (diff)
downloadlingo2-archipelago-feb89a44ddf5f93bc476ca29cd02257aea47dc06.tar.gz
lingo2-archipelago-feb89a44ddf5f93bc476ca29cd02257aea47dc06.tar.bz2
lingo2-archipelago-feb89a44ddf5f93bc476ca29cd02257aea47dc06.zip
Make minimap toggleable
Diffstat (limited to 'data/maps/the_bearer/rooms/Green Vegetable (View).txtpb')
0 files changed, 0 insertions, 0 deletions
t;fefferburbia@gmail.com> 2008-08-04 12:12:25 +0000 Central: Wrote installation script' href='/instadisc/commit/central/trunk/instadisc.sql?id=0df0e5f1e927ea1d04bd5ef3c12be3bc2c72837c'>0df0e5f ^
fe678d3 ^

0df0e5f ^







9c7e9ac ^
0df0e5f ^
fe678d3 ^
0df0e5f ^






fe678d3 ^

0df0e5f ^



fe678d3 ^
0df0e5f ^






fe678d3 ^

0df0e5f ^










0df0e5f ^


fe678d3 ^


0df0e5f ^

055a071 ^
0df0e5f ^
055a071 ^
0df0e5f ^






fe678d3 ^

0df0e5f ^






fe678d3 ^
0df0e5f ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108




                            
                                            


                                
                                




                                                           


                                     

                              



                                       
                                        






                                                           

                             







                                       
                                  
                     
                                        






                                                           

                                



                                       
                                        






                                                           

                               










                                                           


                                            


                                       

                                   
                                   
                     
                                        






                                                           

                             






                                       
                                        
 
-- phpMyAdmin SQL Dump
-- version 2.9.1.1
-- http://www.phpmyadmin.net
-- 
-- Host: localhost
-- Generation Time: Sep 06, 2008 at 10:16 PM
-- Server version: 5.0.51
-- PHP Version: 5.2.4-2ubuntu5.3
-- 
-- Database: `instadisc_central`
-- 

-- --------------------------------------------------------

-- 
-- Table structure for table `config`
-- 

DROP TABLE IF EXISTS `config`;
CREATE TABLE `config` (
  `id` int(11) NOT NULL auto_increment,
  `name` varchar(255) NOT NULL,
  `value` varchar(255) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

-- 
-- Table structure for table `inbox`
-- 

DROP TABLE IF EXISTS `inbox`;
CREATE TABLE `inbox` (
  `id` int(11) NOT NULL auto_increment,
  `username` varchar(255) NOT NULL,
  `itemID` int(11) NOT NULL,
  `subscription` varchar(255) NOT NULL,
  `title` varchar(255) NOT NULL,
  `author` varchar(255) NOT NULL,
  `url` varchar(255) NOT NULL,
  `semantics` text NOT NULL,
  `encryptionID` int(11) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

-- 
-- Table structure for table `oldVerID`
-- 

DROP TABLE IF EXISTS `oldVerID`;
CREATE TABLE `oldVerID` (
  `id` int(11) NOT NULL auto_increment,
  `username` varchar(255) NOT NULL,
  `verID` int(11) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

-- 
-- Table structure for table `pending`
-- 

DROP TABLE IF EXISTS `pending`;
CREATE TABLE `pending` (
  `id` int(11) NOT NULL auto_increment,
  `username` varchar(255) NOT NULL,
  `password` varchar(255) NOT NULL,
  `email` varchar(255) NOT NULL,
  `code` varchar(255) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

-- 
-- Table structure for table `subscriptions`
-- 

DROP TABLE IF EXISTS `subscriptions`;
CREATE TABLE `subscriptions` (
  `id` int(11) NOT NULL auto_increment,
  `username` varchar(255) NOT NULL,
  `url` varchar(255) NOT NULL,
  `category` varchar(255) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

-- 
-- Table structure for table `users`
-- 

DROP TABLE IF EXISTS `users`;
CREATE TABLE `users` (
  `id` int(11) NOT NULL auto_increment,
  `username` varchar(255) NOT NULL,
  `password` varchar(255) NOT NULL,
  `email` varchar(255) NOT NULL,
  `ip` varchar(255) NOT NULL,
  `nextItemID` int(11) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1;