1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/*-- Magische Spawnpoints --*/
#strict
protected func Activate(iPlr) {
MessageWindow(GetDesc(),iPlr);
}
func Initialize()
{
SetGamma(RGB(5,5,10),RGB(80,80,150),RGB(200,200,255));
CreateObject(MSPN,550,282);
CreateObject(MSPN,603,205);
CreateObject(MSPN,682,282);
CreateObject(MSPN,784,227);
CreateObject(MSPN,912,168);
CreateObject(MSPN,1040,120);
CreateObject(MSPN,651,449);
CreateObject(MSPN,432,438);
CreateObject(MSPN,170,118);
CreateObject(MSPN,299,170);
CreateObject(MSPN,435,230);
return(1);
}
|