AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Snippets and Tutorials (https://forums.alliedmods.net/forumdisplay.php?f=112)
-   -   [INC] DString - Dynamic Strings (https://forums.alliedmods.net/showthread.php?t=264897)

Eun 06-23-2015 07:04

[INC] DString - Dynamic Strings
 
2 Attachment(s)
DString - Dynamic Strings

About
Allows you to use strings with dynamic lengths.


Functions
PHP Code:

/**
 * Creates a new empty DString instance
 */
Handle DString_Create();

/**
 * Deletes a DString instance
 */
void DString_Delete(Handle handle);

/**
 * Adds String to DString instance
 * Returns the characters that have been written
 */
int DString_Add(Handle handle, const char[] str);

/**
 * Adds a formated String to DString instance
 * Returns the characters that have been written
 */
int DString_AddEx(Handle handle, const char[] strany ...);

/**
 * Reads the String of a DString instance
 * Returns the characters that have been read
 */
int DString_Read(Handle handlechar[] bufferint buffersize);

/**
 * Wipes contents of a DString instance
 */
void DString_Clear(Handle handle);

/**
 * Returns the current length of a DString instance
 */
int DString_Length(Handle handle);

/**
 * Returns a clone of the current instance
 */
Handle DString_Clone(Handle handle); 


Example
PHP Code:

#include <sourcemod>
#include <DString.inc>

public void Test()
{
    
// creating instance
    
Handle handle DString_Create();
    
    
// adding 'Hello!' and printing how many chars were added
    
PrintToServer("Written %d"DString_Add(handle"Hello!"));
    
    
// adding formated text
    
PrintToServer("Written %d"DString_AddEx(handle" The GameTime is %f"GetGameTime()));
    
    
// reading the whole string
    
char[] buffer = new char[DString_Length(handle)+1];
    
DString_Read(handlebufferDString_Length(handle)+1);
    
PrintToServer("DString is '%s'"buffer);
    
    
// cloning
    
Handle clone = DString_Clone(handle);
    
    
// delete the old one
    
DString_Delete(handle);
    
    
// reading the clone
    
char[] bufferclone = new char[DString_Length(clone)+1];
    
DString_Read(clone, buffercloneDString_Length(clone)+1);
    
PrintToServer("DString clone is '%s'"bufferclone);
    
    
// delete the clone
    
DString_Delete(clone);
}

public 
void TestUsingMethodMap()
{
    
// creating instance
    
DString handle = new DString();
    
    
// adding 'Hello!' and printing how many chars were added
    
PrintToServer("Written %d"handle.Add("Hello!"));
    
    
// adding formated text
    
PrintToServer("Written %d"handle.AddEx(" The GameTime is %f"GetGameTime()));
    
    
// reading the whole string
    
char[] buffer = new char[handle.Length+1];
    
handle.Read(bufferhandle.Length+1);
    
PrintToServer("DString is '%s'"buffer);
    
    
// cloning
    
DString clone = handle.Clone();
    
    
// delete the old one
    
delete handle;
    
    
// reading the clone
    
char[] bufferclone = new char[clone.Length+1];
    clone.
Read(bufferclone, clone.Length+1);
    
PrintToServer("DString clone is '%s'"bufferclone);
    
    
// delete the clone
    
delete clone;
    
}

public 
void OnPluginStart()
{
    
Test();
    
TestUsingMethodMap();



Drixevel 06-23-2015 16:42

Re: [INC] DString - Dynamic Strings
 
This is cool.

Emp` 06-23-2015 20:38

Re: [INC] DString - Dynamic Strings
 
1 Attachment(s)
Below is an alternate version I created with a methodmap.

Example done with methodmaps:
Code:

        DString handle = DString_Create();
        handle.add( "Hello!" );
        handle.addex( " The GameTime is %f", GetGameTime() );
        char[] buffer = new char[ handle.len() + 1 ];
        handle.read( buffer, handle.len() + 1 );
        PrintToServer("DString is '%s'", buffer);
        delete handle;

Example simplified with new features:
Code:

        DString handle = DString_Create( "Hello!" );
        handle.addex( " The GameTime is %f", GetGameTime() );
        PrintToServer( "DString is '%s'", handle.readex() );
        delete handle;

Changelist:
  1. Added methodmap DString.
  2. Added dstring initialization.
  3. Added copy and format functions.
  4. Added readex function that returns a character array.
  5. Renamed DString_ADDEXBUFFER to DSTRING_BUFFERLEN.
  6. Rewritten to not use multiple cell packing. This should reduce plugin weight by doing less native calls. The drawback is that some functions have a max length at DSTRING_BUFFERLEN, which is arbitrarily high at 4048, so you probably will not reach it.

Edit: Attachment outdated, see post below.

WildCard65 06-23-2015 21:53

Re: [INC] DString - Dynamic Strings
 
2 Attachment(s)
And I suppose I should throw in my changes based off of Emp's start.

Changes:
  • Added block to prevent include from being read 2x.
  • Changed Emp's length() method to property named Length(get only).
  • Made methodmaps take advantage of the "this" keyword.
  • Changed methodnames to have first letter uppercase(ex: Copy(), ReadEx())

Edit: Fixed compile errors revolving around DString.Read not being found.

Eun 06-24-2015 04:51

Re: [INC] DString - Dynamic Strings
 
I appreciate your changes.
But there are some problems:


Quote:

Originally Posted by Emp` (Post 2311260)
  1. Rewritten to not use multiple cell packing. This should reduce plugin weight by doing less native calls. The drawback is that some functions have a max length at DSTRING_BUFFERLEN, which is arbitrarily high at 4048, so you probably will not reach it.

I guess you should not limit the Developer to an "arbitrarily high" buffer. Thats not the use case of this Module. This Module should give you the theoretical possibility to use string with an unspecified length.
You just limited it to 4084

Quote:

Originally Posted by Emp` (Post 2311260)
  1. Renamed DString_ADDEXBUFFER to DSTRING_BUFFERLEN.

The buffer was especially designed just for AddEx, since we cannot be dynamic on Formatting issues.


Additionaly you never should fill buffers in a Length call. Length operations should be as little as possible.


However, I added the MethodMap.

Emp` 06-24-2015 15:31

Re: [INC] DString - Dynamic Strings
 
2 Attachment(s)
Quote:

Originally Posted by Eun (Post 2311374)
I appreciate your changes.
But there are some problems:

I guess you should not limit the Developer to an "arbitrarily high" buffer. Thats not the use case of this Module. This Module should give you the theoretical possibility to use string with an unspecified length.
You just limited it to 4084

The buffer was especially designed just for AddEx, since we cannot be dynamic on Formatting issues.

Additionaly you never should fill buffers in a Length call. Length operations should be as little as possible.

However, I added the MethodMap.

The attached version now packs a length cell, removing the length cap from before.

DSTRING_BUFFERLEN is now only used with VFormat. (ie. Format and AddEx functions)

Per WildCard65, length is a property and no longer uses the buffer. Also, added double inclusion block and changed function name cases.

Furthermore, DString inherits the DataPack methodmap, demonstrating dual methodmap usage.

Edit: Attachment outdated, see post below.

WildCard65 06-25-2015 08:52

Re: [INC] DString - Dynamic Strings
 
Quote:

Originally Posted by Emp` (Post 2311606)
The attached version now packs a length cell, removing the length cap from before.

DSTRING_BUFFERLEN is now only used with VFormat. (ie. Format and AddEx functions)

Per WildCard65, length is a property and no longer uses the buffer. Also, added double inclusion block and changed function name cases.

Furthermore, DString inherits the DataPack methodmap, demonstrating dual methodmap usage.

Emp, your include has a compile error with the property, it expects a new line after naming the property, but it got a '{'
Edit: Another thing, your methodmap is also useless, in it's current position it's referencing no function so it f***s the compiler.
After moving the methodmap to under all the functions it references, it has more compile errors.
Errors after moving methodmap:
PHP Code:

dstringtest.sp
C
:\Users\User\Downloads\addons\sourcemod\scripting\include\dstring.inc(20) : error 170creating new object 'DataPack' requires using 'new' before its constructor
C
:\Users\User\Downloads\addons\sourcemod\scripting\include\dstring.inc(24) : error 104cannot find any methods for DString
C
:\Users\User\Downloads\addons\sourcemod\scripting\include\dstring.inc(24) : warning 215expression has no effect
C
:\Users\User\Downloads\addons\sourcemod\scripting\include\dstring.inc(24) : error 001expected token";"but found ")"
C:\Users\User\Downloads\addons\sourcemod\scripting\include\dstring.inc(24) : error 029invalid expressionassumed zero
C
:\Users\User\Downloads\addons\sourcemod\scripting\include\dstring.inc(24) : fatal error 189too many error messages on one line
Done
C
:\Users\User\Downloads\addons\sourcemod\scripting>C:\Users\User\Downloads\addons\sourcemod\scripting\ff2Rename.bat dstringtest.sp 

Above errors caused by doing: new DString() which is replaced with: DString_Create
PHP Code:

/**************************************************************************
 *                                                                        *
 *                       DString - Dynamic Strings                        *
 *                            Author: Eun                                 *
 *                           Version: 1.0.1 Emp`s changes                 *
 *                                                                        *
 **************************************************************************/

#if defined _DSTRING_INCLUDED
  #endinput
#endif
#define _DSTRING_INCLUDED

#if !defined DSTRING_BUFFERLEN
    #define DSTRING_BUFFERLEN 4048
#endif

stock DString DString_Create( const char[] str "" )
{
    
DString handle view_as DString DataPack();
    
int len strlenstr );
    if ( 
len )
    {
        
handle.WriteCelllen );
        
handle.WriteStringstr );
    }
    return 
handle;
}

stock int DString_CopyDString handle, const char[] str )
{
    
int len strlenstr );
    if ( !
handle ) return 0;
    
handle.Resettrue );
    
handle.WriteCelllen );
    
handle.WriteStringstr );
    return 
len;
}
stock int DString_FormatDString handle, const char[] strany ... )
{
    
char bufferDSTRING_BUFFERLEN ];
    
VFormatbuffersizeof bufferstr);
    return 
handle.Copyhandlebuffer );
}

stock int DString_AddDString handle, const char[] str )
{
    
int len handle.Length();
    
int len_add strlenstr );
    if ( !
len_add ) return len;
    
int len_new len len_add
    char
[] buffer = new charlen_new ];
    if ( 
len handle.ReadStringbufferlen );
    
strcopybufferlen ], len_addstr );
    return 
handle.Copybuffer );
}
stock int DString_AddExDString handle, const char[] strany ... )
{
    
char bufferDSTRING_BUFFERLEN ];
    
VFormatbuffersizeof bufferstr);
    return 
handle.Addbuffer );
}

stock int DString_ReadDString handlechar[] bufferint buffersize )
{
    
int len handle.Length();
    if ( 
len handle.ReadStringbufferbuffersize );
    return 
len;
}
stock char[] DString_ReadExDString handle )
{
    
int len handle.Length();
    
char[] buffer = new charlen ];
    
handle.Readbufferlen );
    return 
buffer;
}

stock int DString_LengthDString handle )
{
    if ( !
handle ) return 0;
    
handle.Resetfalse );
    if ( !
handle.IsReadable) ) return 0;
    return 
handle.ReadCell();
}
stock void DString_ClearDString handle )
{
    
handle.Resettrue );
}

stock void DString_DeleteDString &handle )
{
    
delete handle;
}

methodmap DString DataPack
{
    public 
DString() = DString_Create;

    public 
Copy() = DString_Copy;
    public 
Format() = DString_Format;

    public 
Add() = DString_Add;
    public 
AddEx() = DString_AddEx;

    public 
Read() = DString_Read;
    public 
ReadEx() = DString_ReadEx;

    
property int Length
    
{
        public 
get()
        {
            return 
DString_Lengththis );
        }
    }

    public 
Clear() = DString_Clear;



Emp` 06-25-2015 14:47

Re: [INC] DString - Dynamic Strings
 
Try this one out, I fixed the property line and added the missing 'new' in DString_Create. Creating the methodmap first allows the stock functions to use the methodmap; if you look at the stock functions, some handles use both DataPack and DString methods.

PHP Code:

/**************************************************************************
 *                                                                        *
 *                       DString - Dynamic Strings                        *
 *                            Author: Eun                                 *
 *                           Version: 1.0.1 Emp`s changes                 *
 *                                                                        *
 **************************************************************************/

#if defined _DSTRING_INCLUDED
  #endinput
#endif
#define _DSTRING_INCLUDED

#if !defined DSTRING_BUFFERLEN
    #define DSTRING_BUFFERLEN 4048
#endif

methodmap DString DataPack
{
    public 
DString() = DString_Create;

    public 
Copy() = DString_Copy;
    public 
Format() = DString_Format;

    public 
Add() = DString_Add;
    public 
AddEx() = DString_AddEx;

    public 
Read() = DString_Read;
    public 
ReadEx() = DString_ReadEx;

    
property int Length
    
{
        public 
get() { return DString_Lengththis ); }
    }

    public 
Clear() = DString_Clear;
}

stock DString DString_Create( const char[] str "" )
{
    
DString handle view_as DString > new DataPack();
    
int len strlenstr );
    if ( 
len )
    {
        
handle.WriteCelllen );
        
handle.WriteStringstr );
    }
    return 
handle;
}

stock int DString_CopyDString handle, const char[] str )
{
    
int len strlenstr );
    if ( !
handle ) return 0;
    
handle.Resettrue );
    
handle.WriteCelllen );
    
handle.WriteStringstr );
    return 
len;
}
stock int DString_FormatDString handle, const char[] strany ... )
{
    
char bufferDSTRING_BUFFERLEN ];
    
VFormatbuffersizeof bufferstr);
    return 
handle.Copyhandlebuffer );
}

stock int DString_AddDString handle, const char[] str )
{
    
int len handle.Length();
    
int len_add strlenstr );
    if ( !
len_add ) return len;
    
int len_new len len_add
    char
[] buffer = new charlen_new ];
    if ( 
len handle.ReadStringbufferlen );
    
strcopybufferlen ], len_addstr );
    return 
handle.Copybuffer );
}
stock int DString_AddExDString handle, const char[] strany ... )
{
    
char bufferDSTRING_BUFFERLEN ];
    
VFormatbuffersizeof bufferstr);
    return 
handle.Addbuffer );
}

stock int DString_ReadDString handlechar[] bufferint buffersize )
{
    
int len handle.Length();
    if ( 
len handle.ReadStringbufferbuffersize );
    return 
len;
}
stock char[] DString_ReadExDString handle )
{
    
int len handle.Length();
    
char[] buffer = new charlen ];
    
handle.Readbufferlen );
    return 
buffer;
}

stock int DString_LengthDString handle )
{
    if ( !
handle ) return 0;
    
handle.Resetfalse );
    if ( !
handle.IsReadable) ) return 0;
    return 
handle.ReadCell();
}
stock void DString_ClearDString handle )
{
    
handle.Resettrue );
}

stock void DString_DeleteDString &handle )
{
    
delete handle;



WildCard65 06-25-2015 16:25

Re: [INC] DString - Dynamic Strings
 
Emp, your code caused a "Not enough space on the stack" error.
Code:

L 06/25/2015 - 16:24:11: [SM] Exception reported: Not enough space on the stack
L 06/25/2015 - 16:24:11: [SM] Blaming plugin: dstringtest.smx
L 06/25/2015 - 16:24:11: [SM] Call stack trace:
L 06/25/2015 - 16:24:11: [SM]  [0] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [1] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [2] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [3] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [4] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [5] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [6] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [7] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [8] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [9] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [10] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [11] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [12] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [13] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [14] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [15] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [16] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [17] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [18] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [19] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [20] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [21] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [22] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [23] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [24] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [25] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [26] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [27] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [28] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [29] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [30] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [31] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [32] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [33] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [34] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [35] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [36] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [37] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [38] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [39] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [40] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [41] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [42] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [43] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [44] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [45] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [46] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [47] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [48] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [49] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [50] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [51] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [52] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [53] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [54] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [55] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [56] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [57] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [58] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [59] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [60] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [61] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [62] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [63] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [64] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [65] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [66] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [67] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [68] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [69] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [70] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [71] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [72] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [73] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [74] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [75] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [76] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [77] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [78] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [79] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [80] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [81] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [82] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [83] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [84] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [85] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [86] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [87] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [88] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [89] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [90] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [91] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [92] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [93] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [94] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [95] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [96] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [97] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [98] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [99] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [100] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [101] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [102] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [103] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [104] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [105] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [106] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [107] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [108] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [109] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [110] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [111] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [112] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [113] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [114] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [115] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [116] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [117] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [118] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [119] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [120] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [121] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [122] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [123] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [124] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [125] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [126] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [127] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [128] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [129] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [130] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [131] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [132] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [133] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [134] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [135] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [136] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [137] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [138] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [139] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [140] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [141] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [142] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [143] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [144] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [145] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [146] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [147] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [148] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [149] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [150] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [151] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [152] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [153] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [154] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [155] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [156] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [157] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [158] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [159] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [160] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [161] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [162] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [163] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [164] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [165] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [166] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [167] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [168] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [169] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [170] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [171] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [172] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [173] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [174] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [175] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [176] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [177] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [178] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [179] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [180] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [181] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [182] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [183] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [184] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [185] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [186] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [187] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [188] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [189] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [190] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [191] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [192] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [193] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [194] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [195] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [196] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [197] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [198] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [199] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [200] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [201] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [202] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [203] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [204] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [205] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [206] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [207] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [208] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [209] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [210] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [211] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [212] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [213] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [214] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [215] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [216] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [217] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [218] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [219] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [220] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [221] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [222] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [223] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [224] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [225] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [226] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [227] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [228] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [229] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [230] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [231] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [232] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [233] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [234] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [235] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [236] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [237] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [238] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [239] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [240] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [241] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [242] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [243] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [244] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [245] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [246] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [247] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [248] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [249] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [250] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [251] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [252] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [253] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [254] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [255] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [256] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [257] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [258] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [259] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [260] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [261] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [262] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [263] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [264] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [265] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [266] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [267] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [268] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [269] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [270] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [271] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [272] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [273] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [274] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [275] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [276] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [277] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [278] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [279] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [280] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [281] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [282] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [283] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [284] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [285] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [286] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [287] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [288] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [289] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [290] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [291] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [292] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [293] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [294] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [295] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [296] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [297] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [298] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [299] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [300] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [301] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [302] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [303] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [304] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [305] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [306] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [307] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [308] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [309] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [310] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [311] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [312] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [313] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [314] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [315] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [316] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [317] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [318] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [319] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [320] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [321] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [322] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [323] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [324] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [325] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [326] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [327] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [328] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [329] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [330] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [331] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [332] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [333] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [334] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [335] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [336] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [337] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [338] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [339] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [340] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [341] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [342] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [343] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [344] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [345] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [346] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [347] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [348] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [349] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [350] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [351] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [352] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [353] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [354] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [355] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [356] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [357] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [358] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [359] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [360] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [361] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [362] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [363] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [364] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [365] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [366] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [367] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [368] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [369] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [370] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [371] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [372] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [373] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [374] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [375] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [376] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [377] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [378] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [379] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [380] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [381] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [382] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [383] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [384] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [385] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [386] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [387] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [388] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [389] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [390] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [391] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [392] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [393] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [394] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [395] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [396] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [397] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [398] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [399] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [400] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [401] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [402] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [403] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [404] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [405] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [406] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [407] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [408] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [409] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [410] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [411] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [412] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [413] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [414] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [415] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [416] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [417] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [418] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [419] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [420] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [421] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [422] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [423] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [424] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [425] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [426] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [427] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [428] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [429] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [430] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [431] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [432] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [433] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [434] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [435] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [436] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [437] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [438] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [439] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [440] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [441] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [442] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [443] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [444] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [445] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [446] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [447] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [448] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [449] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [450] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [451] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [452] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [453] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [454] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [455] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [456] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [457] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [458] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [459] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [460] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [461] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [462] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [463] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [464] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [465] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [466] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [467] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [468] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [469] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [470] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [471] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [472] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [473] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [474] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [475] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [476] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [477] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [478] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [479] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [480] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [481] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [482] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [483] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [484] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [485] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [486] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [487] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [488] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [489] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [490] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [491] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [492] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [493] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [494] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [495] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [496] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [497] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [498] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [499] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [500] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [501] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [502] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [503] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [504] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [505] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [506] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [507] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [508] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [509] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [510] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [511] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [512] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [513] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [514] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [515] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [516] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [517] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [518] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [519] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [520] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [521] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [522] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [523] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [524] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [525] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [526] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [527] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [528] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [529] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [530] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [531] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [532] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [533] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [534] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [535] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [536] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [537] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [538] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [539] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [540] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [541] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [542] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [543] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [544] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [545] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [546] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [547] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [548] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [549] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [550] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [551] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [552] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [553] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [554] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [555] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [556] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [557] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [558] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [559] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [560] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [561] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [562] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [563] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [564] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [565] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [566] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [567] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [568] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [569] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [570] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [571] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [572] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [573] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [574] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [575] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [576] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [577] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [578] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [579] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [580] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [581] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [582] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [583] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [584] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [585] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [586] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [587] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [588] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [589] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [590] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [591] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [592] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [593] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [594] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [595] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [596] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [597] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [598] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [599] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [600] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [601] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [602] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [603] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [604] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [605] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [606] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [607] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [608] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [609] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [610] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [611] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [612] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [613] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [614] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [615] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [616] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [617] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [618] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [619] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [620] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [621] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [622] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [623] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [624] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [625] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [626] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [627] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [628] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [629] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [630] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [631] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [632] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [633] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [634] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [635] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [636] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [637] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [638] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [639] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [640] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [641] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [642] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [643] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [644] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [645] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [646] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [647] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [648] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [649] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [650] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [651] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [652] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [653] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [654] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [655] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [656] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [657] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [658] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [659] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [660] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [661] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [662] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [663] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [664] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [665] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [666] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [667] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [668] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [669] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [670] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [671] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [672] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [673] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [674] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [675] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [676] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [677] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [678] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [679] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [680] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [681] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [682] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [683] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [684] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [685] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [686] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [687] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [688] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [689] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [690] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [691] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [692] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [693] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [694] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [695] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [696] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [697] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [698] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [699] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [700] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [701] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [702] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [703] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [704] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [705] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [706] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [707] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [708] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [709] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [710] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [711] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [712] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [713] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [714] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [715] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [716] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [717] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [718] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [719] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [720] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [721] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [722] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [723] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [724] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [725] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [726] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [727] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [728] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [729] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [730] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [731] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [732] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [733] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [734] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [735] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [736] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [737] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [738] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [739] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [740] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [741] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [742] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [743] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [744] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [745] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [746] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [747] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [748] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [749] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [750] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [751] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [752] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [753] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [754] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [755] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [756] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [757] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [758] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [759] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [760] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [761] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [762] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [763] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [764] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [765] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [766] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [767] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [768] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [769] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [770] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [771] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [772] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [773] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [774] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [775] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [776] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [777] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [778] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [779] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [780] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [781] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [782] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [783] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [784] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [785] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [786] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [787] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [788] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [789] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [790] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [791] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [792] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [793] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [794] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [795] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [796] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [797] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [798] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [799] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [800] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [801] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [802] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [803] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [804] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [805] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [806] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [807] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [808] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [809] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [810] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [811] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [812] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [813] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [814] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [815] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [816] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [817] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [818] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [819] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [820] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [821] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [822] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [823] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [824] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [825] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [826] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [827] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [828] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [829] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [830] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [831] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [832] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [833] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [834] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [835] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [836] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [837] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [838] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [839] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [840] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [841] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [842] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [843] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [844] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [845] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [846] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [847] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [848] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [849] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [850] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [851] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [852] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [853] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [854] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [855] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [856] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [857] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [858] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [859] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [860] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [861] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [862] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [863] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [864] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [865] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [866] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [867] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [868] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [869] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [870] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [871] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [872] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [873] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [874] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [875] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [876] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [877] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [878] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [879] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [880] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [881] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [882] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [883] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [884] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [885] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [886] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [887] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [888] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [889] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [890] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [891] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [892] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [893] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [894] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [895] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [896] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [897] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [898] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [899] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [900] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [901] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [902] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [903] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [904] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [905] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [906] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [907] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [908] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [909] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [910] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [911] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [912] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [913] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [914] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [915] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [916] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [917] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [918] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [919] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [920] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [921] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [922] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [923] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [924] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [925] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [926] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [927] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [928] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()
L 06/25/2015 - 16:24:11: [SM]  [929] Line 22, C:\Users\User\Downloads\addons\sourcemod\scripting\dstringtest.sp::DString_Create()


friagram 06-25-2015 17:32

Re: [INC] DString - Dynamic Strings
 
I dont think this is useful, but it could be done easier using adt arrays... Just use bytecounttocells when doing createarray


All times are GMT -4. The time now is 20:09.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.