WC3XP 2.6.3 and AMXX 1.70

Post here to report bugs in Warcraft3 XP. Please read the sticky.

Moderator: Forum Moderator

Post Reply
User avatar
ferret
Lead Warcraft 3 XP Developer
Posts: 422
Joined: Wed Jul 06, 2005 8:20 am
Location: Atlanta, GA
Contact:

WC3XP 2.6.3 and AMXX 1.70

Post by ferret » Mon Mar 13, 2006 8:38 am

2.6.3 will not compile with 1.70 currently. I will be updating the CVS with a minor update to correct this sometime tonight.

If you attempt to recompile it under AMXX 1.70, you'll get an error on bDwarfAmmo not having an array index. This has always been an error but prior versions of AMXX didn't pick it up. Fortunately, this is an unnecessary bit of code and can simply be deleted.

I don't recall what line number the error is on, the compiler will tell you. Go to that line and simply delete the bDwarfAmmo[iParm[0]] bit.

Should look something like this:

Code: Select all

if(is_user_connected(id) && bDwarfAmmo[iParm[0]] && is_valid_ent(iParm[2]))
Should become:

Code: Select all

if(is_user_connected(id) && is_valid_ent(iParm[2]))
-< www.gamehavoc.com >-

Lazarus Long: And I know you didn't because the Server Files are version 2.2.6 and the file you posted is version 2.2.5, so do as I told you above and don't ever lie to me again or help is gone!

User avatar
ferret
Lead Warcraft 3 XP Developer
Posts: 422
Joined: Wed Jul 06, 2005 8:20 am
Location: Atlanta, GA
Contact:

Post by ferret » Thu Mar 16, 2006 5:26 pm

This is uploaded into the CVS. CVS has also been made available again.
-< www.gamehavoc.com >-

Lazarus Long: And I know you didn't because the Server Files are version 2.2.6 and the file you posted is version 2.2.5, so do as I told you above and don't ever lie to me again or help is gone!

s0ulja
Peon
Posts: 13
Joined: Sun Jul 31, 2005 12:59 pm
Contact:

Post by s0ulja » Thu Apr 06, 2006 5:04 pm

for sum reason i get this :\

Image
Image

User avatar
ferret
Lead Warcraft 3 XP Developer
Posts: 422
Joined: Wed Jul 06, 2005 8:20 am
Location: Atlanta, GA
Contact:

Post by ferret » Thu Apr 06, 2006 8:25 pm

You deleted more than you were suppose to :/
-< www.gamehavoc.com >-

Lazarus Long: And I know you didn't because the Server Files are version 2.2.6 and the file you posted is version 2.2.5, so do as I told you above and don't ever lie to me again or help is gone!

s0ulja
Peon
Posts: 13
Joined: Sun Jul 31, 2005 12:59 pm
Contact:

Post by s0ulja » Fri Apr 07, 2006 11:17 pm

i re-edited it almost 20 times now
and i didnt delete or add anything extra...
can someones please help
Image

DarkJP2
Rifleman
Posts: 163
Joined: Tue Jul 26, 2005 3:18 pm
Location: Swiss

Post by DarkJP2 » Mon Apr 10, 2006 5:22 am

use the cvs version

Post Reply