Quote:
Originally Posted by anakin_cstrike
Hi..how can i make that amxx-studio look like this at start :
Code:
#include <amxmodx>
#include <amxmisc>
stock const PLUGIN[] = "New Plugin"
stock const VERSION[] = "1.0"
stock const AUTHOR[] = "Anakin"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
}
Or other things ?
|
Go into My Computer\C:\Program Files\Amxx Studio\config\settings and search the line :
Code:
DefaultPluginAuthor=User
and change User with your name
Code:
DefaultPluginAuthor=Anakin
And then every time you enter in amxx studio will appear like this :
Code:
#include <amxmodx>
#include <amxmisc>
stock const PLUGIN[] = "New Plugin"
stock const VERSION[] = "1.0"
stock const AUTHOR[] = "Anakin"
public plugin_init() {
register_plugin(PLUGIN, VERSION, AUTHOR)
}
Understood ?
__________________