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

[Znote AAC] Advanced Spells v2

Help :/

Update spells from file:
Successfully fetched spells.xml!
Using temporal file: /tmp/php0oEAL7
Loaded 0 spells!
File "spell.php" created!
 
As I click on Vocation, for example, the Sorcerer is not displaying my spells. It works just as I click on "all", but it shows all spells
 
It works but it doesn't work on my TibiaCOM layout. The button "Spells" to the left doesn't exist.
 
admin panel -> Update spells from file -> search your spells.xml -> submit

Can you give a more detail instruction please. I also have the following "This page has not been configured yet.". I pasted my spells.xml after line <b>Update spells from file:</b><br> and it didn't work.

nvm fail at reading, i did not notice the ?> before as i inserted the code after <?php include 'layout/overall/footer.php'; ?>
Thanks for the release.
 
Last edited:
i tyed this but i have no update or upload in my admin panel onyl "Update spells from file:" but no direction or no button
i followed the theard 100% can any one help me im using 0.3.6
 
Once I get some free time I´ll be able to test this again : p
 
What about now for all the spells people have had done in the mods? I mean besides converting everything over...
 
Also (wouldn't allow me to edit) everything is working fine for me... fetched and worked perfectly :D

Thanks
 
Hey man
I followed all the steps and this was my surprise when I actalizado the Znote:



for compatibility with my windows 7 64bit, I'm using a 1.5 master Znote going very well, except for these little things xDD. If you could tell me what I can do I would greatly appreciate it friend
thank you very much, if only for reading
 
Successfully fetched spells.xml!
Using temporal file: D:\AOCOT\UniServerZ\tmp\php6FA6.tmp
Loaded 129 spells!
File "spell.php" updated!

and spells.php is showing NOTHING! on there stand only SPELLS
 
Hello there,

I'm having problems installing this module. Here comes a screenshot of what happens when i try to load spells.xml at admins page.

19437-28a553b505fcd775760a6036868ff981.jpg



Can anybody help me?

Thanks!
 

Attachments

  • erro spells php.jpg
    erro spells php.jpg
    42.9 KB · Views: 20 · VirusTotal
i click on page at "Spells" and on that .php page stand only the Word "Spells"

I know I'm late but if this help anyone...

If the spells page is empty after succesfully uploading the spells.xml, you just need to do the following.

Open your spells.php and replace every "type" => ," with "type" => 'Instant' ," or "type" => 'rune' ,

The problem is that every spell is missing the attribute type
 
TFS 1.0 fix
after:
Code:
if(config('TFSVersion') == 'TFS_03')
            {
                $string .= (($value['value'] == 'conjureRune') ? '\'Rune\'' : '\'Instant\'');
            }
add:
Code:
            if(config('TFSVersion') == 'TFS_10') {
                $string .= "'{$key}'";
            }
 
Thank you for the fix, but it does something wrong with the vocations. Every spell is available for every vocation, so people can't sort them vocation based.
 
Back
Top