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

Prince

Members
  • Posts

    281
  • Joined

  • Last visited

    Never

Prince's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. > Thank you for this tutorial ! > > I didn't tryed that for the moment > > Edit : Tryed , Working perfectly thanks ![;)](http://www.touchofdeathforums.com/community/public/style_emoticons//wink.png) You cam make a GM icon instead, lol.
  2. Basically, im using RMXP resources so its look weird to the tittle of the game.
  3. Hi there i currently need a logo for my game called Tale of Ninja Online. Its naruto based mmorpg so the logo is gonne look similar to most of the naruto mmo out there. its gonne be a standard logo size with naruto font and abit messy brush at the background. ![](http://www.freemmorpgmaker.com/files/imagehost/pics/70e8d41eba56cdea839d139c196734aa.jpg) ![](http://www.freemmorpgmaker.com/files/imagehost/pics/dd9b89309661b9bc97affe29b3cd50eb.png) thanks you so much for your time. sorry i speak bad English. Prince
  4. > Read the code then. Checking if the sum is less than zero doesn't do duck all to fix the problem since the problem is the sum being zero. Think. Thanks you so much, i just did this: ``` If MapNpc(MapNpcNum).num = MAX_MAP_NPCS Then Exit Sub ``` Its working now. Thanks you
  5. > What's the message? Its RTE 9 subscript out of range. > I got this too > > its because npcnum is 0 > > put this on top still doesn't fix it.
  6. After attack the npc then i got this error ![](http://www.freemmorpgmaker.com/files/imagehost/pics/71e7b43468832a040d90620b06e0bc12.png)
  7. **Introduce** I'm no programmer, i just mess around modgraphic and figure out this cool feature. Actually not a complete feature for a VIP system, so i just tittle it as Rendering graphic over player head. I will update this later to an complete VIP system. I'm using GetPlayerAccess >= 1 to make the graphic appear. **What it will look like** ![](http://www.freemmorpgmaker.com/files/imagehost/pics/74a9fe61ed0cbd1719ba4de81ad64ae3.png) **Client Side Only** - Download the attachment and put it into "client\data files\graphics\misc" - Go to **ModGraphic** Search for : ``` Public Tex_Shadow As DX8TextureRec ``` Under it add : ``` Public Tex_VIP As DX8TextureRec ``` - In **Private Sub LoadTexture** Search for : ``` ReDim Preserve gTexture(NumTextures) ``` Under Add : ``` Tex_VIP.filepath = App.Path & "\data files\graphics\misc\vip.png" Tex_VIP.Texture = NumTextures - 10 ``` - In **Public Sub UnloadTextures()** Search for : ``` Tex_Shadow.Texture = 0 ``` Under Add : ``` Tex_VIP.Texture = 0 ``` - In **Public Sub DrawPlayer(ByVal Index As Long)** Search for : ``` If GetTickCount > TempPlayer(Index).StartFlash Then Call DrawSprite(Sprite, X, Y, rec) TempPlayer(Index).StartFlash = 0 Else Call DrawSprite(Sprite, X, Y, rec, True) End If ``` Under Add : ``` ' render vip If GetPlayerAccess(Index) >= 1 Then RenderTexture Tex_VIP, ConvertMapX(X - 42), ConvertMapY(Y - 40), 0, 0, 128, 32, 128, 32, D3DColorRGBA(255, 255, 255, 200) End If ``` I will make a complete of the VIP feature in the future. So i don't think this helpful for some reason. Anyway just share it. Prince
  8. I think the walking animation is not looking smooth, different from the last CSDE.
  9. > Finsih the effect system rendering. Quest & Guild System. This Engine gonne be ![:D](http://www.touchofdeathforums.com/community/public/style_emoticons//biggrin.png) da best.
  10. Please get the Quest system added as soon as possible.
  11. I have a feeling that you gonne be the next dev.
  12. [![](http://www.freemmorpgmaker.com/files/imagehost/pics/f2d0a0ab85e53bf461f60702c329a21a.PNG)](http://www.freemmorpgmaker.com/files/imagehost/#f2d0a0ab85e53bf461f60702c329a21a.PNG)
×
×
  • Create New...