View Single Post
Drixevel
AlliedModders Donor
Join Date: Sep 2009
Location: Somewhere headbangin'
Old 07-14-2018 , 07:52   Re: How to create a String on new sourcemod?
Reply With Quote #2

PHP Code:
char pReason[100]; 
In other cases:
PHP Code:
int size 100;
char[] pReason = new char[size]; 
Drixevel is offline