• Welcome to Touhou Wiki!
  • Registering is temporarily disabled. Check in our Discord server to request an account and for assistance of any kind.

User:ShadeTempest/TF2Server/es uberspawn.txt: Difference between revisions

From Touhou Wiki
Jump to navigation Jump to search
(Created page with "<syntaxhighlight lang="php">block load { es_msg Uberspawn has been loaded. } block unload { es_msg Uberspawn has been unloaded. } event player_spawn { es_msg event_v...")
 
mNo edit summary
Line 9: Line 9:
}
}
   
   
event player_spawn
event player_spawn //These commands are executed to a player when that player spawns. TF2 Addcond plugin is required for this
{
{
   es_msg event_var(es_username) spawned.
   es_msg event_var(es_username) spawned. //Announces spawn. In touhou you know when all bosses appear.
   es sm_addcond event_var(es_username) 51 7
   es sm_addcond event_var(es_username) 51 7 //Adds spawn protection ubercharge for 7 seconds
   es sm_addcond event_var(es_username) 46 -1
   es sm_addcond event_var(es_username) 46 -1 //Tracer effect so all instant hitscan weapons are highlighed (Like lasers in touhou)
   es sm_addcond event_var(es_username) 72 -1
   es sm_addcond event_var(es_username) 72 -1 //Vaccinator passive bullet resistance; this server focuses on slower danmaku projetiles
   es sm_addcond event_var(es_username) 61 -1
   es sm_addcond event_var(es_username) 61 -1 //Infinite double jumps to simulate flying, and faster speed
   es sm_addwearable event_var(es_username) 444
   es sm_addwearable event_var(es_username) 444 //Requires TF2 Giveweapon plugin, Gives the mantreads.
}</syntaxhighlight>
}</syntaxhighlight>

Revision as of 03:23, 21 November 2014

block load
{
  es_msg Uberspawn has been loaded.
}
 
block unload
{
  es_msg Uberspawn has been unloaded.
}
 
event player_spawn //These commands are executed to a player when that player spawns. TF2 Addcond plugin is required for this
{
  es_msg event_var(es_username) spawned. //Announces spawn. In touhou you know when all bosses appear.
  es sm_addcond event_var(es_username) 51 7 //Adds spawn protection ubercharge for 7 seconds
  es sm_addcond event_var(es_username) 46 -1 //Tracer effect so all instant hitscan weapons are highlighed (Like lasers in touhou)
  es sm_addcond event_var(es_username) 72 -1 //Vaccinator passive bullet resistance; this server focuses on slower danmaku projetiles
  es sm_addcond event_var(es_username) 61 -1 //Infinite double jumps to simulate flying, and faster speed
  es sm_addwearable event_var(es_username) 444 //Requires TF2 Giveweapon plugin, Gives the mantreads.
}