[ANY] Beam me up, Scotty (teleport) (v1.2, 2012-05-31)
Admin command which lets you teleport a player to another player or to yourself.
Plugin only allows to be teleported to an alive person and only an alive person can be teleported. (That was an interesting sentence to write.. lol )
It was a side product of my other project so its quite simple. I don't know if there is something like this but I couldn't find it..
Usage;
sm_beammeup <target name> <teleporter name>
sm_beamtome <teleporter name>
Admin Menu;
Keeping in mind the Star Trek reference, this is what I use in my adminmenu_custom.cfg;
Enterprise being the target and
Cpt. Kirk being the one to be teleported.
Changelog
v1.2, 2012-05-31
*Trimmed the "PrintToChatAll" tags.
*Corrected it as for all games.
v1.1, 2012-05-30
*added teleport to me option
v1.0, 2012-05-30
* Initial release.
Confession;
I'm new to sourcemod so I don't know if this works with other games but I'm using it with CS:S without problems.
Hope it will be useful..
Live long and prosper!
Plugin only allows to be teleported to an alive person and only an alive person can be teleported. (That was an interesting sentence to write.. lol )
It was a side product of my other project so its quite simple. I don't know if there is something like this but I couldn't find it..
Usage;
sm_beammeup <target name> <teleporter name>
sm_beamtome <teleporter name>
Admin Menu;
Keeping in mind the Star Trek reference, this is what I use in my adminmenu_custom.cfg;
Code:
"Beam me up"
{
"admin" "sm_admin"
"cmd" "sm_beammeup #1 #2"
"execute" "player"
"1"
{
"type" "player"
"method" "name"
"title" "Enterprise"
}
"2"
{
"type" "player"
"method" "name"
"title" "Cpt. Kirk"
}
}
"Beam him to me"
{
"admin" "sm_admin"
"cmd" "sm_beamtome #1"
"execute" "player"
"1"
{
"type" "player"
"method" "name"
"title" "Cpt. Kirk"
}
}
Cpt. Kirk being the one to be teleported.
Changelog
v1.2, 2012-05-31
*Trimmed the "PrintToChatAll" tags.
*Corrected it as for all games.
v1.1, 2012-05-30
*added teleport to me option
v1.0, 2012-05-30
* Initial release.
Confession;
I'm new to sourcemod so I don't know if this works with other games but I'm using it with CS:S without problems.
Hope it will be useful..
Live long and prosper!
Orignal From: [ANY] Beam me up, Scotty (teleport) (v1.2, 2012-05-31)
Post a Comment