AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Off-Topic (https://forums.alliedmods.net/forumdisplay.php?f=15)
-   -   Amxx Studio seting (https://forums.alliedmods.net/showthread.php?t=71533)

anakin_cstrike 05-18-2008 14:51

Amxx Studio seting
 
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 ?

ConnorMcLeod 05-18-2008 15:16

Re: Amxx Studio seting
 
Why don't you use pawn studio ? ( i use amx editor from Devcones :D )

anakin_cstrike 05-18-2008 15:19

Re: Amxx Studio seting
 
Quote:

Originally Posted by connorr (Post 627276)
Why don't you use pawn studio ? ( i use amx editor from Devcones :D )

Because pawn studio has a big bug...i have post in the thread:|
So in amxx-studio is not posible ?

DA 05-18-2008 16:10

Re: Amxx Studio seting
 
If I start Amxx Studio then the IDE create automatic this:

Code:
/* Plugin generated by AMXX-Studio */ #include <amxmodx> #include <amxmisc> #define PLUGIN "New Plug-In" #define VERSION "1.0" #define AUTHOR "Muchel" public plugin_init() {     register_plugin(PLUGIN, VERSION, AUTHOR)         // Add your code here... }

ZombieMan 05-18-2008 16:34

Re: Amxx Studio seting
 
Quote:

Originally Posted by anakin_cstrike (Post 627268)
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 ?:)

Exolent[jNr] 05-18-2008 20:02

Re: Amxx Studio seting
 
Or, if you don't want to go looking for files, you can change it in the preferences.

Tools > Settings > Misc

anakin_cstrike 05-19-2008 06:29

Re: Amxx Studio seting
 
I already knew that...but is not possible to change from "#define" to "stock const" ?:cry:

hleV 05-19-2008 07:01

Re: Amxx Studio seting
 
I would like this:
PHP Code:

/* Plugin generated by AMXX-Studio */
 
#include <amxmodx>
#include <amxmisc>
 
#define PLUGIN "New Plug-In"
#define VERSION "1.0"
#define AUTHOR "Muchel"
 
public plugin_init() {
        
register_plugin(PLUGINVERSIONAUTHOR)
 
        
// Add your code here...


to be like this:
PHP Code:

#include <amxmodx>
#include <amxmisc> 
 
public plugin_init()
{        
        
register_plugin("Plugin""1.0""hleV")


But I can't or don't know how to change it.

ZombieMan 05-19-2008 07:33

Re: Amxx Studio seting
 
It's imposible what you want hleV ...

Quote:

I already knew that...but is not possible to change from "#define" to "stock const" ?:cry:
The answer is no !

anakin_cstrike 05-19-2008 11:24

Re: Amxx Studio seting
 
Quote:

Originally Posted by ZombieMan (Post 627545)
It's imposible what you want hleV ...



The answer is no !

Ok:cry:


All times are GMT -4. The time now is 02:15.

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