Following are a few lines from my code:
PHP Code:
new var[32]
format (var, 31, "blabla")
set_user_info (id, "var" , var)
The program compiles with no error.
But the setinfo does not work while running the plugin.
I have to manually put "setinfo var blabla" in console.
Does the set_user_info not take variables in its arguments?
The variable var does not remain the same in the code, so I cannot use
PHP Code:
set_user_info (id, "var" , "blabla")
Any suggestions?