viewing paste SourcePawn | SourcePawn

Posted on the | Last edited on
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
//Testing sourcepawn
/*
Testing other comments
 
*/
 
#define
#else
#elseif
#endif
#endinput
#undef
#pragma
#include
#tryinclude
    
public OnPluginStart()
{
 
    decl String:GameType[50]
    GetGameFolderName(GameType, sizeof(GameType))
    
    if (StrEqual(GameType, "tf", false))
    {
        gametype = 1
    }
    
    // 0 - diabled
    // 1 - enabled on supported maps
    // 2 - force enabled on all maps
    revengearena_enabled = CreateConVar("revengeare_enabled",stuffing)
    ResetKilledbyList()
    
    HookEvent("player_death", Event_PlayerDeath)
    
    //For maximum compatibility, hook everything
    HookEvent("arena_round_start", stuff)
    HookEvent("stuffings", stuffies)
 
    new Handle:hTopMenu = INVALID_HANDLE;
    
    
    
    
}
Viewed 1388 times, submitted by Streusel.