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

Light Eclipse Update 9


Zopto
 Share

Recommended Posts

  • Replies 82
  • Created
  • Last Reply

Top Posters In This Topic

Erwin when i  use transform spell it is all ok but when i went to back i use this code to i click agen on spell to i back on my orginal sprite i got  run time error 9
here is code

```
Client Side

Go to PlayerRec and find

    Sprite As Long

add below it

    Spriteold As Long

Server Side

Go to PlayerRec and find

    Sprite As Long

add below it

    Spriteold As Long

Go to Sub JoinGame Place

    SetPlayerSpriteOld index, Player(index).Sprite

after

    Call SendHotbar(index)

Search for

Sub SetPlayerSprite(ByVal index As Long, ByVal Sprite As Long)

after that sub paste

Sub SetPlayerSpriteOld(ByVal index As Long, ByVal Sprite As Long)
    Player(index).Spriteold = Sprite
End Sub

replace all the

                    If Spell(spellnum).Sprite > 0 Then
                        SendAnimation MapNum, Spell(spellnum).SpellAnim, 0, 0, TARGET_TYPE_PLAYER, Index
                        SetPlayerSprite Index, Spell(spellnum).Sprite
                        Call SendPlayerData(Index)
                    End If

with

                    If Spell(spellNum).Sprite > 0 Then
                        If Player(index).Sprite = Player(index).Spriteold Then
                            SetPlayerSpriteOld index, Player(index).Sprite
                            SetPlayerSprite index, Spell(spellNum).Sprite
                            Call SendPlayerData(index)
                        Else
                            SetPlayerSprite index, Player(index).Spriteold
                            Call SendPlayerData(index)
                        End If
                    End If
```
Link to comment
Share on other sites

@Erwin:

> Press Debug when error shows up and tell us which line he's selecting.

```
View Current Pets on Map
    [b]If PetMapCache(Player(index).Map).UpperBound > 0 Then[/b]
        For j = 1 To PetMapCache(Player(index).Map).UpperBound
            Call NPCCache_Create(index, Player(index).Map, PetMapCache(Player(index).Map).Pet(j))
        Next
    End If
```
lol what that hawe whit transformation spell O.o
Fixed!! i just need to delete all accounts xD now all works
i now work on minimap and skill lvl
and i try to make friend system to work
Link to comment
Share on other sites

Zopto, You need to learn a few things.

First off, use code tags. (code)(/code) but with [] instead of ()

Also, your and Jaxx main post for both your threads are very messy and unorganized and unattractive. Try looking at other topics and following their sense of layout.

And if you get tired of answering the same question, or know theres a bug somewhere, list them and make a damn FAQ.

And also, quit double posting spam.
Link to comment
Share on other sites

@Encyclopedia:

> Zopto, You need to learn a few things.
>
> First off, use code tags. (code)(/code) but with [] instead of ()
>
> Also, your and Jaxx main post for both your threads are very messy and unorganized and unattractive. Try looking at other topics and following their sense of layout.
>
> And if you get tired of answering the same question, or know theres a bug somewhere, list them and make a damn FAQ.
>
> And also, quit double posting spam.

is now better?
Link to comment
Share on other sites

k i try fix as much bugs i can of 5.4.2012 to 11.4.2012 biz that days i no hawe modem i need to get new  biz this is  not work corectly i lose conncect…...then i hawe alot time to fix bugs(but i am not shure if i  hawe alot bugs)for now no 1 report any big bug to somting dont work..
Link to comment
Share on other sites

I got this RTE 53 " File not found "

[![](http://www.freemmorpgmaker.com/files/imagehost/pics/40c5734b2a0297c0c2f3318f5fe01c0f.PNG)](http://www.freemmorpgmaker.com/files/imagehost/#40c5734b2a0297c0c2f3318f5fe01c0f.PNG)
Link to comment
Share on other sites

@Prince:

> I got this RTE 53 " File not found "
>
> [![](http://www.freemmorpgmaker.com/files/imagehost/pics/40c5734b2a0297c0c2f3318f5fe01c0f.PNG)](http://www.freemmorpgmaker.com/files/imagehost/#40c5734b2a0297c0c2f3318f5fe01c0f.PNG)

just chage numbers of sprites in server data classes in male and femail sprites
Link to comment
Share on other sites

@Erwin:

> Thats nothing related to accounts, its located client side and its probably something with the graphics, make sure you have all the folders you should have.

he need just to chage  sprite number in server/data/classes biz i delete other sprites when  i update version..exemple just set  male:1,2,3(number is number of sprite)
                            female:1,2,3
erwin can you exemple better i tying but my englesh is bed xD
Link to comment
Share on other sites

@Zopto:

> He just need to change sprite number in server data classes because I've deleted other sprites when I release a new version
>
> **Example:**
> Just set male:1,2,3 (number is number of sprite)
>             female:1,2,3
>
> Erwin can you make my example better, I'm trying but my English is bad xD

There ya go.
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...