• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Magic wall

gurden

i need support for my server, good scripter!
Joined
May 19, 2009
Messages
519
Reaction score
5
Location
Sweden
Magic wall gives PZ when shooting. And in demon helm quest on my server when i shoot on the floor , the floor just fucks up and looks like this.
Any idea's?
 
Last edited:
You got it fixed then? Cykotitan? Compiled? If you help me i +rep you. Maybe you could send my msn?
 
Ow, i didn't know that, but my friend had the same problem (he solved it), but he didn't tell me how :). But he didn't recompile, that is for sure.
 
The ugly fix (used by thunderion and realms):

Open combat.cpp, find
Code:
else if(params.isAggressive && !Item::items[itemId].blockPathFind)
                                pzLock = true;
Add after
Code:
if(itemId == ITEM_MAGICWALL || itemId == ITEM_MAGICWALL_SAFE)
                                pzLock = false;
 
Back
Top