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

Just fiddling with the Engine,


Rob Janes
 Share

Recommended Posts

I've downloaded the beta, and it looks good. There is only one problem that I can see. When you walk diagonally, you can walk out of the map. I mean, you walk to the edges, using normal directions, all fine. If you use the arrow keys, and walk diagonally however, you end up walking out of view entirely, and off of the map. O_o
Link to comment
Share on other sites

  • Replies 246
  • Created
  • Last Reply

Top Posters In This Topic

@Ertzel:

> I really like the work you've done with these edits Samu. I started playing around with your code today and so far Im really liking these transparent screens.
>
> Thx for releasing this :D

the source is released?
Link to comment
Share on other sites

@SamuGames:

> I have released a very EARLY beta build of my modifications so far;
>
> People should only use this with VB knowledge so they can adjust it to how they see fit.
>
> Please report any bugs or suggestions here.  Remember it is a work in progress, so saying things like "Theres nothing on the Guild on the Server, is redunant".  I'm aware of this.  If something is incomplete, it's just because I haven't gotten around to finishing it yet!
>
> Enjoy!
>
> www.samugames.com/SamuMods.zip
Link to comment
Share on other sites

@erkro1:

> When you update an quest on server, it doesn't get updated on client.
> Can you fix that, please?

I've fixed it by my self.

Here is the fix :
Replace **Sub SendQuestLog** in **modSamugames** with this :
```
Public Sub SendQuestLog(ByVal index As Integer)
Dim Buffer As clsBuffer
Dim i As Integer
Set Buffer = New clsBuffer
Buffer.WriteLong SClearQuestLog
Buffer.WriteString "Clear"
SendDataTo index, Buffer.ToArray()
Set Buffer = Nothing
For i = 1 To MAX_PLAYER_QUESTS
    Set Buffer = New clsBuffer
    Buffer.WriteLong SUpdateQuestLog
    Buffer.WriteInteger i
    Buffer.WriteString Quests(i).Name
    Buffer.WriteString Quests(i).ProgressString
    Buffer.WriteString Quests(i).KillNPCName
    Buffer.WriteInteger Quests(i).KillNPCCurrentAmount
    Buffer.WriteInteger Quests(i).KillNPCAmount
    Buffer.WriteString Quests(i).Completed
    Buffer.WriteInteger Quests(i).Experience
    Buffer.WriteInteger Quests(i).Gold
    SendDataTo index, Buffer.ToArray
    Set Buffer = Nothing
Next i

End Sub
```
Link to comment
Share on other sites

Oh and the spirit,health,and expirience bar won't show can somebody please help me with this cause i know nobody's gonna play a game without knowing their health mana or expirience points!!(p.s. I know im double posting and i might get reported for it but i really need to make a decent game that fits my needs!!so i need to know this!)
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...