Help
Moderator: Forum Moderator
-
- Peon
- Posts: 17
- Joined: Mon Nov 14, 2005 9:31 pm
Help
I asked and searched the forum and tried doing this myself many times but i just can't seem to do it. I'm tryin to change the item prices, I know theres alot of thread that came up about this but it didn't really help me :/ I'm asking if someone is nice enough to edit and compile the warcraft3FT.sma and the constant.inl for me and upload the .amxx file here it would be great. I just want to change the helm price to 80000 or something really high so you can't buy it. Thank in advance.
- Krazy
- Forum Administrator
- Posts: 282
- Joined: Wed Jul 06, 2005 9:40 am
- Location: Dayton, Ohio
- Contact:
Change item prices
I will tell you how to edit the plugin to do so and see if you can do it first. If not then I will be nice and compile it.
-----------------------------------------------------------
Go to addons/amxmodx/scripting/war3ft/constants.inl and find these:
This is the "shopmenu" command and the items are in order
This is the "shopmenu2" command in CS/CZ and the items are in order
This is the "shopmenu2" command in DOD and the items are in order
-----------------------------------------------------------
For what you would want to do is change:
to
-----------------------------------------------------------
Go to addons/amxmodx/scripting/war3ft/constants.inl and find these:
This is the "shopmenu" command and the items are in order
Code: Select all
new const itemcost[9] = {1500,2500,1000,800,2000,800,2000,1000,4000}
Code: Select all
#if MOD == 0
new const itemcost2[9] = {7500,1500,1500,1500,1500,1750,1000,9000,16000}
Code: Select all
#if MOD == 1
new const itemcost2[9] = {800,1500,550,1500,1500,1750,1000,9000,16000}
For what you would want to do is change:
Code: Select all
#if MOD == 0
new const itemcost2[9] = {7500,1500,1500,1500,1500,1750,1000,9000,16000}
Code: Select all
#if MOD == 0
new const itemcost2[9] = {7500,1500,99999,1500,1500,1750,1000,9000,16000}
Website: www.djpsych.com

Need help anything to do with Warcraft 3 Mod, installing other plugins, setting up mySQL, installing PsychoStats, or anything else just PM/email me!

Need help anything to do with Warcraft 3 Mod, installing other plugins, setting up mySQL, installing PsychoStats, or anything else just PM/email me!
-
- Peon
- Posts: 17
- Joined: Mon Nov 14, 2005 9:31 pm
- Krazy
- Forum Administrator
- Posts: 282
- Joined: Wed Jul 06, 2005 9:40 am
- Location: Dayton, Ohio
- Contact:
It is really easy to compile, but here you go anyway.
- Attachments
-
- warcraft3FT.amxx
- Version 2.3.2 of Warcraft 3 FT Mod with the Helm price changed to 99999
- (230.25 KiB) Downloaded 655 times
Website: www.djpsych.com

Need help anything to do with Warcraft 3 Mod, installing other plugins, setting up mySQL, installing PsychoStats, or anything else just PM/email me!

Need help anything to do with Warcraft 3 Mod, installing other plugins, setting up mySQL, installing PsychoStats, or anything else just PM/email me!