• 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!

spells.cpp TFS 0.4

Darkenes

New Member
Joined
Jan 5, 2014
Messages
19
Solutions
1
Reaction score
4
when i try cast correct spell: exani hur "up do this, exani hur " "up"
error con console spells.cpp am trying fix but i cant


C++:
        {
            reWords = instantSpell->getWords();
            if(instantSpell->getHasParam())
                reWords += " \"" + param + "\"";
        }
 
mano sin tu ayuda no lo hubiera acabado pero este
C++:
        {
            reWords = instantSpell->getWords();
            if(instantSpell->getHasParam())
                reWords += ' ' + param;
        }
 
Back
Top