generated from Jaysyn/ModuleTemplate
10 lines
293 B
Plaintext
10 lines
293 B
Plaintext
// Bed pickup script by Helge Ingvoldstad "aka" DarkFame
|
|
// Gives the player the bed spawn item and destroys the placeable.
|
|
// Created: 11th of July, 16:40 GMT+1
|
|
// e-mail: helgeai@online.no
|
|
void main()
|
|
{
|
|
CreateItemOnObject("port_item2", GetLastUsedBy(), 1);
|
|
DestroyObject(OBJECT_SELF,0.0);
|
|
}
|