Jump to content

Elendil

Members
  • Posts

    9
  • Joined

  • Last visited

Posts posted by Elendil

  1. Ok, in fact, I've found a solution by myself.

    The map was 130x130, with nothing weird on it, nothing visible just the save crash.
    The solution is to use rev 620 to copy my entire map to a 131x131 map and saving. After that, I've open the map with rev 586, clean lightmaps and save.


    Since I've do that, no problem, so it's solved!

    I hope this solution can help someone else.

  2. Hello!

    I think you can do an SQL Query like this:

    UPDATE 
        `char` 
    SET 
        `status_point` = `str` + `agi` + `vit` + `int` + `dex` + `luk`,
        `str` = `agi` = `vit` = `int` = `dex` = `luk` = 0
    

    This gonna reset stats from all chars on server! 

    Do a test in a duplicate of your DB first, I'm not quite sure if it works.

  3. Hello everyone!

    First of all, sorry for my bad english.

    I'm experiencing an annoying bug with browedit when I try to save my map.
    Since the beginnning of my work, I've only do some quicksave, with BE r620, and all's going fine.
    But, when I've wanted to try my map IG, I've try to "Save As" (or save, same problem) with r586 and BE crash. (same crash with r586, r587 and r558)

    There is the last line of the log_worldeditor:

    Info: [17:41:16] World: 33504 tiles left
    

    I don't understand where's my fail!
    Someone can help me please?

     

     

    I've join the complete log to this post, and my config.

    PS: If it can help, I've an error when I try to load the map in BE 2.0, I don't have any screen but it's a thing like "ACCESS VIOLATION ERROR".

     

     

    Edit:

    (same crash with r586, r587 and r558)

     

    And r620.

     

    Just in case, my PC specs:

    		Operating System
    			Windows 7 Édition Intégrale 64-bit SP1
    		CPU
    			AMD Phenom II X4 955
    			Deneb 45nm Technology
    		RAM
    			12,0 Go Dual-Channel DDR3 @ 669MHz (9-9-9-24)
    		Motherboard
    			Gigabyte Technology Co., Ltd. GA-970A-UD3 (Socket M2)
    		Graphics
    			BenQ BL2410 (1920x1080@60Hz)
    			BenQ FP202WA (1680x1050@59Hz)
    			1023MB NVIDIA GeForce GTX 560 Ti (MSI)
    		Storage
    			931GB Western Digital WDC WD10 EZEX-00ZF5A0 SATA Disk Device (SATA)
    

    log_worldeditor.txt

    ro.xml

  4. This question was asked in frathena (French eathena support board) by Keyworld:
     

     

     

    Logically, require/include(_once) directly in the templates which include the wished module.
    (templates/default/footer.php - templates/default/header.php - templates/default/main/*.php) 

     

    That's actualy what I've done for the status & the connection panel, it works like a charm!

  5. Hello everyone!

    I'm in an integration of one of my themes in Flux CP, but, this theme have a connection form in all pages.
    When the player is connected, I've a menu in all pages too to access to account management pages, obviously, I want to show the account name in all pages.

    Screenshots of what I want to integrate:


    User menu:

    fRuBzmUwhI.png
     
    Login form
    LrwoiOk7BG.png
     
    Do u have any solution to this?

    I've think to add the account module in all pages, but I don't know how to make this.
     
    Thank you!

    PS: Sorry for my bad English.
     
     
    Edit: I've found a solution for the second problem: 
              <div id="connectbox">
                <img class="avatar" src="<?php echo $this->themePath('') ?>/template/images/top/sampleavatar.png"/>
                <a id="showusermenu">Bienvenue, <?php echo htmlspecialchars($session->account->userid) ?> !</a>
              </div>
              <div style="display: none;" class="connect content">
                <ul>
                  <li><a href="?module=account&action=view">Mon compte</a></li>
                  <li><a href="?module=account&action=changepass">Changer de mot de passe</a></li>
                  <li><a href="?module=account&action=changemail">Changer de mail</a></li>
                  <li class="deco"><a href="?module=account&action=logout">Déconnexion</a></li>
                </ul>
              </div>
    

    Static menu and session variable.

×
×
  • Create New...