Author Topic: I keep getting an error relating to "Weapon_fist"  (Read 1937 times)

Whenever I start a server in blockland, whether it be single player or multiplayer, I get this error:



I know it's probably caused by a faulty add-on, but Weapon_fist isn't in my add-ons folder. I have no idea how this is being caused.


lol when i saw this i thought it was going to be, "i keep getting an erection".

User was banned for this post
« Last Edit: July 06, 2015, 01:11:41 AM by Badspot »

This is completely normal, just ignore it. It happens to me, and I'm pretty sure everyone else. The fist is just a fist, it's holding a transparent weapon that emits the punching sound (I think), and the game can't find the "gun", because it is transparent.

Even if I'm wrong, this is still normal, and you shouldn't worry about it.

Some add-on is trying to add a damage type (a special icon for when you get killed/kill someone with said weapon), and the image file cannot be found.
I'm assuming you're using Item_Fist.
To fix this, change this line in the server.cs:
Code: [Select]
AddDamageType("fist",   '<bitmap:add-ons/Weapon_fist/CI_fist> %1',    '%2 <bitmap:add-ons/Weapon_fist/CI_fist> %1',0.75,1);to this:
Quote
AddDamageType("fist",   '<bitmap:add-ons/Item_Fist/CI_fist> %1',    '%2 <bitmap:add-ons/Item_fist/CI_fist> %1',0.75,1);

Whoever made the add-on probably had it under a different name and decided to rename it for whatever reason.

Some add-on is trying to add a damage type (a special icon for when you get killed/kill someone with said weapon), and the image file cannot be found.
I'm assuming you're using Item_Fist.
To fix this, change this line in the server.cs:
Code: [Select]
AddDamageType("fist",   '<bitmap:add-ons/Weapon_fist/CI_fist> %1',    '%2 <bitmap:add-ons/Weapon_fist/CI_fist> %1',0.75,1);to this:
Whoever made the add-on probably had it under a different name and decided to rename it for whatever reason.
I don't have Item_fist

lol when i saw this i thought it was going to be, "i keep getting an erection".

User was banned for this post
« Last Edit: July 06, 2015, 01:11:47 AM by Badspot »

lol when i saw this i thought it was going to be, "i keep getting an erection".

If you're not going to help, don't bother replying.

I don't have Item_fist
Post a console.log so we can find out which add-on could be causing this; chances are it's some sort of fist mod.

Post a console.log so we can find out which add-on could be causing this; chances are it's some sort of fist mod.
got it

got it
You need to start a server, not connect to one, in order to create a relevant console.log

All thats going on is the game cant find the image that displays when a kill with that weapon happens, otherwise known as a CI.

To fix this, somebody would either have to go into the weapon_fist folder and assign a CI properly or remove the part of code that tries to call it.

If you have a link to the "weapon_fist" addon, we could fix it.

You need to start a server, not connect to one, in order to create a relevant console.log
ok

Code: [Select]
Loading Add-On: Item_InstaKillFist (CRC:-1826570481)
Executing Add-Ons/Item_InstaKillFist/server.cs.
WARNING: AddDamageType() - fist file "add-ons/Weapon_fist/CI_fist.png" does not exist!
6 datablocks added.

This is the add-on causing the problem. Open its server.cs and use Edit -> Replace.

Find what: add-ons/Weapon_fist/CI_fist.png
Replace with: Add-Ons/GameMode_Rampage/CI_godzillaWeapon.png

Then save. That will fix the problem.

Code: [Select]
Loading Add-On: Item_InstaKillFist (CRC:-1826570481)
Executing Add-Ons/Item_InstaKillFist/server.cs.
WARNING: AddDamageType() - fist file "add-ons/Weapon_fist/CI_fist.png" does not exist!
6 datablocks added.

This is the add-on causing the problem. Open its server.cs and use Edit -> Replace.

Find what: add-ons/Weapon_fist/CI_fist.png
Replace with: Add-Ons/GameMode_Rampage/CI_godzillaWeapon.png

Then save. That will fix the problem.


Yes, it is in the server.cs of the instakill fist item.

I'll upload the server.cs