Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

alextoti99

Members
  • Posts

    97
  • Joined

  • Last visited

    Never

Posts posted by alextoti99

  1. Hello again, when login into the game i get this error:
    ```
    ' Send Resource cache
    For I = 0 To ResourceCache(GetPlayerMap(index)).Resource_Count
    SendResourceCacheTo index, I
    Next
    ```
  2. you can add instances, the same world different npc, players (like world in 4story or dungeons in l2) you will just have to write the world script again and then u will be adding just as many world you want, also you can add more players just by chaning the max players, for example ive set it to 100
  3. If you like our project and you want to help us then, then the best way is by donating!
    Donation Link: paypal.me/AlexandrosTitonis

    In case of donation there will be rewards.
    1 - 10 Euros: Closed Tests + Game Key | Your name and country in credits |  Forum Rank: Donator
    11 - 30 Euros: Closed Tests + Game Key | Your name and country in credits |  Forum Rank: Beloved Donator
    31 - 50 Euros: Closed Tests + Game Key | Your name and country in credits | In-game Boost Item |  Forum Rank: Beloved Donator
    51 - 100 Euros: Closed Tests + Game Key | Your name and country in credits | In-game Boost Item | Voice Caster DLC | Forum Rank: Master Donator
    101 - 200 Euros: Closed Tests + Game Key | Your name and country in credits | In-game Boost Item | Voice Caster DLC | Printed Poster | Forum Rank: Master Donator
    201 - 500 Euros: Closed Tests + Game Key | Your name and country in credits | In-game Boost Item | Voice Caster DLC | Printed Poster | T-Shirt |  Forum Rank: Master Donator
    501 - 1000 Euros: Closed Tests + Game Key | Your name and country in credits | In-game Boost Item | Voice Caster DLC | Printed Poster | T-Shirt | 1 DLC pack of your choice | Forum Rank: Master Donator
    1001 ++ Euros: Closed Tests + Game Key | Your name and country in credits | In-game Boost Item | Voice Caster DLC | Printed Poster | T-Shirt | 1 DLC pack of your choice | Premium Bot System to save you time | Forum Rank: Master Donator

    Ps: DLCs may change! DLCs will be delivered to donatores when they are ready! Donations will be up until release, then they will stop! All items won't boost stats, but they will be like a head start! DLCs and bot will be found in our store! There won't be any case of buying/givingaway items! The game is play and not pay to win!
    The rewards will be given upon donation check, this might take some time!
    Some high donations will get randomly a reward:
    Add your name at a NPC/Monster/Boss.
    Use your in game idea.
    Use your graphics.
  4. [Added Features]
    –----------------- 01-Jul-17 -------------------
    Added /afk and /back commands.

    ------------------- 2-Jul-17 -------------------
    Added tutorial on first game enter.
    Added online list and /onlinelst command.
    Added /sendbug command.

    ------------------- 03-Jul-17 -------------------
    Created server time packet.

    ------------------- 05-Jul-17 -------------------
    Added version check.

    ------------------- 06-Jul-17 -------------------
    Added web browser.
    Credits will link now instantly at the web browser.
    Also Home button will open the game's website.

    ------------------- 07-Jul-17 -------------------
    Created the game's updater.

    ------------------- 08-Jul-17 -------------------
    Changed respawn settings (for players and admins).
    Now every time the player moves his x,y,map are being saved to avoid position loss in case of problems.

    ------------------- 09-Jul-17 -------------------
    Finished Alpha maps.

    ------------------- 10-Jul-17 -------------------
    Finished Animations, now only balance and drops are left.

    ------------------- 11-Jul-17 -------------------
    Added names at the maps.
    Added music at the maps.

    ------------------- 12-Jul-17 -------------------
    Finished with balance. Drops are left now.
    When the game will be released the players will be able to play for the first map, then they will have to pay to get access to whole game (1 payment only!), so anyone can check the game a little and which class to choose before buying it. Ofcourse Alpha test will be an open test!
    Added /time command and bug reporter NPC.

    ------------------- 15-Jul-17 -------------------
    Added more maps.
    Saved player's previous x,y in the database.

    ------------------- 16-Jul-17 -------------------
    Added Email for account.
    Added Email manager.
    Added Add Email panel on first login and when the email is missing (not added) on login.
    Added Password manager.
    In general added account manager NPC.

    ------------------- 24-Jul-17 -------------------
    Added Return Back skill to return to crosswell village.

    ------------------- 27-Jul-17 -------------------
    Now GMs will be invisible when they enter the game, also an announcement with the Admin name will be made.
    Gave the ability to give Paid Access to players only by the administrators.
    Added a new NPC "Old Villager", that gives info about hidden ways to go to next maps.

    ------------------- 29-Jul-17 -------------------
    Added Warp To skill type.
    Added Survival map type.

    ------------------- 31-Jul-17 -------------------
    Started with the development of Mini Event System.

    * * *

    [Fixed Bugs]
    –----------------- 2-Jul-17 -------------------
    Fixed ingame credits.

    ------------------- 10-Jul-17 -------------------
    Fixed pick up and projectiles bugs.

    ------------------- 11-Jul-17 -------------------
    Fixed some paperdolls' bugs.

    ------------------- 14-Jul-17 -------------------
    Fixed a bug that caused client crash when changing map.

    ------------------- 18-Jul-17 -------------------
    Fixed a bug that was moving the character when moving.
    Fixed web browser navigation.

    ------------------- 24-Jul-17 -------------------
    Fixed a bug that was causing server to crash, when changing map.
    Edited the maps in order to look better.

    ------------------- 27-Jul-17 -------------------
    Fixed the rest Alpha maps.
  5. When im entering a building threw warp im getting error at these lines:
    ```
    ' Check to see if the map tile is blocked or not
    If Map.Tile(x, y).Type = TILE_TYPE_BLOCKED And Player(MyIndex).Walkthrough = False Then
    CheckDirection = True
    Exit Function
    End If

    ' Check to see if the map tile is a resource or not
    If Map.Tile(x, y).Type = TILE_TYPE_RESOURCE And Player(MyIndex).Walkthrough = False Then
    CheckDirection = True
    Exit Function
    End If

    ' Check to see if the key door is open or not
    If Map.Tile(x, y).Type = TILE_TYPE_KEY Then

    ' This actually checks if its open or not
    If TempTile(x, y).DoorOpen = NO And Player(MyIndex).Walkthrough = False Then
    CheckDirection = True
    Exit Function
    End If
    End If

    ' Check to see if a npc is already on that tile
    For I = 1 To Npc_HighIndex
    If MapNpc(I).Num > 0 And Player(MyIndex).Walkthrough = False Then
    If MapNpc(I).x = x Then
    If MapNpc(I).y = y Then
    If Not Player(MyIndex).Walkthrough Then
    CheckDirection = True
    Exit Function
    End If
    End If
    End If
    End If
    Next
    ```if possible help me :D thx in advance
×
×
  • Create New...