amx Mod.

New Member
Joined
Nov 10, 2005
Messages
71
Best answers
0
Hmm :) I think i'll get in trouble when I ask...
Does anyone know some programing? mainly programming AMX plugins? I was wondering if someone can, or has, made a plugin for giving any attack, to any player... I've tried to code it to run for AMX, NOT Amxmodx... anywyas... I have low hopes of this thread even getting a reply.
Thanks anyways.
 
Base belongs to me.
👑 Administrator
🌠 Staff
✔️ HL Verified
🚂 Steam Linked
💎Légéñdārý
Joined
Nov 30, 2002
Messages
10,861
Best answers
0
Location
Netherlands
New Member
Joined
Nov 10, 2005
Messages
71
Best answers
0
Thanks pain for moving me =). ummm sky rider... I dont know how to use AMXX... it doesnt work. lol.. and I cant find tutorilas about how to work it. Does it need metamod? LOL... >>
 
Active Member
✔️ HL Verified
💻 Oldtimer
Joined
Jul 13, 2004
Messages
1,232
Best answers
0
Location
Germany | Bayern
Its the same as AMX just the Updated Version of Amx
AMXX > Amx
 
Senior Member
★ Black Lounger ★
✔️ HL Verified
💻 Oldtimer
Joined
Feb 17, 2003
Messages
1,483
Best answers
0
*stares at last couple of posts*

It sounds like you need to get used to bieng a server admin rather than starting off hard.
Use admin mod until you get used to servering. Admin mod is a bit more easy allthough you dont get the controll that you would get with AMX(x). But its easier for new admins. Mess with that until you get used to how metamod and server adminstration tools works.
 
New Member
Joined
Nov 10, 2005
Messages
71
Best answers
0
I've used AMX mod since WON server for CS 1.5 -_____-... AMXx seems diff from AMX though.. thats all. hehe, well... honestly, that doesnt mean im experienced lol. But since im using AMX mod, dont make it so hard on me :p. If you guys are good with AMX/AMXX, can you tell me why one of my plugins say "YOu dont have access to that cmd"? It's the one I mentioned in the beginning of the thread. Mr.Satan's Give attacks. I KNOW ppl have gotten it to work... but no one said how -___-. If you can help me, I guess PM me. Thanks
 
Senior Member
★ Black Lounger ★
✔️ HL Verified
💻 Oldtimer
Joined
Feb 17, 2003
Messages
1,483
Best answers
0
Its simply cause you dont have access to that command. Give yourself acess, not that hard.
Since you "use AMX mod since WON server for CS 1.5" adding an admin's level shouldnt be too hard.
 
Active Member
✔️ HL Verified
💻 Oldtimer
Joined
Jul 13, 2004
Messages
1,232
Best answers
0
Location
Germany | Bayern
Sometimes changeing the name ingame is helping too.
Example:
ESFn00b -> ESFn00b1 and then back to normal ESFn00b if you want to ^^ :p
That sometimes also is helpinbg by some Access probs.
 
New Member
Joined
Nov 10, 2005
Messages
71
Best answers
0
I gave myself access, but I think i didnt do it right.. lol, still wont let me. Anyways, i can prolly re-compile the AMX plugin myself. Can someone give me the SMA, or the source code for the plugin?
 
Active Member
✔️ HL Verified
💻 Oldtimer
Joined
Jul 13, 2004
Messages
1,232
Best answers
0
Location
Germany | Bayern
The source code for Mr.Satan's attack giver ?
Look on the Amxx Page for the Plugins Section there you should find it.

otherwise just write your own Plugin.

Code:
#include < amxmodx >
#include < fun >

public plugin_init()
{
   register_plugin("Weapons","0.1","SSJGoku83" );//Plugin Info
   register_clcmd("gimme","GivesWeapons");

   return PLUGIN_CONTINUE;
}
//Give ALL Weapons
public GivesWeapons(id)
{
	//Goku Signature Attacks-----------
	give_item(id, "weapon_kamehameha");
	give_item(id, "weapon_spiritbomb");
	give_item(id, "weapon_kametorpedo");
	//Vegeta Signature Attacks---------
	give_item(id, "weapon_finalflash");
	give_item(id, "weapon_bigbang");
	give_item(id, "weapon_gallitgun");
	//Trunks Signature Attacks---------
	give_item(id, "weapon_burningattack");
	give_item(id, "weapon_finishingbuster");
	//Krillin Signature Attacks--------
	give_item(id, "weapon_solarflare");
	give_item(id, "weapon_scatterbeam");
	give_item(id, "weapon_destructodisc");
	//Buu Signature Attacks------------
	give_item(id, "weapon_candy");
	give_item(id, "weapon_regeneration");
	give_item(id, "weapon_mouthblast");
	//Gohan Signature Attacks----------
	give_item(id, "weapon_shieldattack");
	give_item(id, "weapon_powerbeam");
	//Piccolo Signature Attacks--------
	give_item(id, "weapon_masenko");
	give_item(id, "weapon_specialbeamcannon");
	give_item(id, "weapon_scattershot");
	give_item(id, "weapon_eyelaser");
	//Frezzer Signature Attacks--------
	give_item(id, "weapon_deathball");
	give_item(id, "weapon_fingerlaser");
	give_item(id, "weapon_friezadisc");
	
	return PLUGIN_HANDLED;

}
Just open Console and type "gimme" in it.

BTW: This is Amxx written, i dunno anymore if its different in AMX.
But it should also work.
 
Base belongs to me.
👑 Administrator
🌠 Staff
✔️ HL Verified
🚂 Steam Linked
💎Légéñdārý
Joined
Nov 30, 2002
Messages
10,861
Best answers
0
Location
Netherlands
I'm not that sure SSJGOKU, Amxx has different & new code in it. So i don't think it works if you compile it for AMX, but of course i'm not sure about it.
 
Active Member
✔️ HL Verified
💻 Oldtimer
Joined
Jul 13, 2004
Messages
1,232
Best answers
0
Location
Germany | Bayern
Yeh im not 100% sure about it either , but the natives for giving the attacks havent changed.

Maybe its only the includes where have changed, i dunno for sure.
But i think it could/should also work for Amx.
If not give me an Amxx style snippet and i change the code above into amx.
 
New Member
Joined
Nov 10, 2005
Messages
71
Best answers
0
lol, can someone write me a AMX plugin then? :p. Plus, where did you compile your source code? The compiler for Amxx is down.. is that the only place to compile it?
 
Active Member
✔️ HL Verified
💻 Oldtimer
Joined
Jul 13, 2004
Messages
1,232
Best answers
0
Location
Germany | Bayern
when you download AMXX there is in the scripting folder of amxx an compiler.

In the AMX folder there should be an compiler too, just look in the scripting folder of your amx folder.
 
New Member
Joined
Nov 10, 2005
Messages
71
Best answers
0
thanks alot yo! :D... I really wish I knew how to code, and write scripts. lol...

Ummm, sorry to bother agn. But, I foudn the compiler... but I cant compile. lol. I dont know how to =/. Do I create a new text doc, and paste code in, then save as a INC file?... or, is it possible you can teach me how to compile.. IM SORRY ><!
 
Active Member
✔️ HL Verified
💻 Oldtimer
Joined
Jul 13, 2004
Messages
1,232
Best answers
0
Location
Germany | Bayern
Copy the Code above. BTW.
make sure that ontop there is
#inlcude <amxmodx>
#include <fun>
NOT
#include < amxodx >

i had to leave space otherwise it wouldnt show up.
Anyway.
Create an empty txt file and paste the code inside of it.
Rename the Example.txt into Example.sma and its done
 
New Member
Joined
Nov 10, 2005
Messages
71
Best answers
0
oh, i see, and drag into the compiler... lol, b4 I came back to this thread, I was just thinkig about that :p... btw, I dont understand wht you just warned me about.

Copy the Code above. BTW.
make sure that ontop there is
#inlcude
#include
NOT
#include < amxodx >

? I know im writing this script for AMX mod... not amxx... is that wht you meant?
anyways, I'll give it a try, but I'll give you some time to reply. btw.. thanks alot man :)
 
Active Member
✔️ HL Verified
💻 Oldtimer
Joined
Jul 13, 2004
Messages
1,232
Best answers
0
Location
Germany | Bayern
no problem with all XD.

What i warned you about is this:

dont make this
#include < amxmodx >
#include < fun >

remove the empty space between < and amxmodx and after it >
 
New Member
Joined
Nov 10, 2005
Messages
71
Best answers
0
ok, I'll do that now =)... BUT DANG!!!! One more problem.. I think, somethings wrong with the AMX compiler now.... When i drag the SMA file in... it says something about "cant find temp.txt".. -__-. I think Im doing it wrong. LOL. Also, I should ask... in the script, you put your player name there... should I replace it with mine? Anything else I need to change? :p thanks... you know wht? I'd prolly tell you do compile for me in the END. LOL!!!!! XD I dunno, but thanks.
 

Users who are viewing this thread

Top Bottom