mirror of
https://github.com/chenasraf/mudblock.git
synced 2026-05-18 01:48:57 +00:00
39 lines
688 B
Dart
39 lines
688 B
Dart
import 'features/profile.dart';
|
|
|
|
final profilePresets = [
|
|
// MUDProfile(
|
|
// id: 'local',
|
|
// name: 'Local',
|
|
// host: 'localhost',
|
|
// port: 4000,
|
|
// ),
|
|
MUDProfile(
|
|
id: 'smud',
|
|
name: 'SimpleMUD',
|
|
host: 'smud.ourmmo.com',
|
|
port: 3000,
|
|
authMethod: AuthMethod.diku,
|
|
mccpEnabled: false,
|
|
),
|
|
MUDProfile(
|
|
id: 'aardwolf',
|
|
name: 'Aardwolf',
|
|
host: 'aardmud.org',
|
|
port: 23,
|
|
authMethod: AuthMethod.diku,
|
|
authPostSend: true,
|
|
),
|
|
MUDProfile(
|
|
id: 'batmud',
|
|
name: 'BatMUD',
|
|
host: 'batmud.bat.org',
|
|
port: 23,
|
|
),
|
|
MUDProfile(
|
|
id: 'dune',
|
|
name: 'Dune',
|
|
host: 'dune.servint.com',
|
|
port: 6789,
|
|
),
|
|
];
|