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

EE2.1 Logout Error Solved *Maybe and SkillTile Error


Xynetor
 Share

Recommended Posts

I have found two error spots in the Source of EE2.1

One Of the Two is the Logout error RTE 9

when i put ' for the spot I don't get the error any more.
but I think its a code that shouldn't been deleted because I don't know the side effects of it.

The other one is if you have made the skill and put the tiles on the map and then edit the skill again. and use the skill but didn't replaced the Skill Tiles it first gave a Error and closed the Server/Client but now it gives a Message that says to warn the admins that the skill isn't working

here is the code of the logout error I ' one of the last sentences

```
    ' ::::::::::::::::::::::::
    ' :: Player data packet ::
    ' ::::::::::::::::::::::::
    If casestring = "playerdata" Then
    Dim a As Long
        i = val#(parse$(1))
        Call SetPlayerName(i, parse$(2))
        Call SetPlayerSprite(i, val#(parse$(3)))
        Call SetPlayerMap(i, val#(parse$(4)))
        Call SetPlayerX(i, val#(parse$(5)))
        Call SetPlayerY(i, val#(parse$(6)))
        Call SetPlayerDir(i, val#(parse$(7)))
        Call SetPlayerAccess(i, val#(parse$(8)))
        Call SetPlayerPK(i, val#(parse$(9)))
        Call SetPlayerGuild(i, parse$(10))
        Call SetPlayerGuildAccess(i, val#(parse$(11)))
        Call SetPlayerClass(i, val#(parse$(12)))
        Call SetPlayerHead(i, val#(parse$(13)))
        Call SetPlayerBody(i, val#(parse$(14)))
        Call SetPlayerLeg(i, val#(parse$(15)))
        Call SetPlayerPaperdoll(i, val#(parse$(16)))
        Call SetPlayerLevel(i, val#(parse$(17)))
        a = 18
        For j = 1 To MAX_SKILLS
            Call SetPlayerSkillLvl(i, j, val#(parse$(a)))
            'Call SetPlayerSkillExp(i, j, val#(parse$(a + 1)))
            a = a + 2
        Next j
```
EDIT : The Logout error is Client based and the Skill error is Server based
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...