View Single Post
Timocop
AlliedModders Donor
Join Date: Mar 2013
Location: Germany
Old 09-02-2017 , 14:29   Re: BasicPawn and AMX Mod X
Reply With Quote #6

Sadly no, it would break the Text Editor highlighting because you can change the escape character anywhere in the code. Its hardcoded instead.

PHP Code:
public plugin_init() {
#pragma ctrlchar '\'
    
server_print("\"")
#pragma ctrlchar '^'
    
server_print("^"")
#pragma ctrlchar '#'
    server_print("
#"")


Last edited by Timocop; 09-02-2017 at 16:33.
Timocop is offline