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

Toucher1

Members
  • Posts

    22
  • Joined

  • Last visited

    Never

Toucher1's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. And how I can fix it?
  2. Every Sep_Char or End_Char makes error. I have VB6 Enterprise Edition. I have this error, when I compile client.exe: ![](http://www.freemmorpgmaker.com/files/imagehost/pics/398d8904036f87bb05a600ce60ce267f.JPG)
  3. @Ballie: > But there's no way to set a label client side with that, Revan. That would specifically call for a clunky scripted menu. The whole point of the source code is to get away from slow input like that. Your statement is backwards. He is asking about sending packets, not making a custom menu. It is you who is in the wrong board. > > Esc, in the server, find where it sends a PlayerMsg. I've seen you around the scripting board, so I know you can understand it. Just go through the subs, following the flow of the PlayerMsg, from server to client. Then, make your own custom packet, modeling it after what you learned. I thought he wanted only an event xD he neednt make it in menu but with the script you can make kill events.
  4. This Topic: [http://www.touchofdeathforums.com/smf/index.php/topic,61282.msg646458.html#msg646458](http://www.touchofdeathforums.com/smf/index.php/topic,61282.msg646458.html#msg646458) You create the folder Charextras in Scripts and there are the #name#.ini Files. For an event use something like that: ``` If < PutVar("Scripts\charextras\" & GetPlayerName(Index) & ".ini", "KillCounter", "Kills", "#Number of kills needed#") Then Call SetPlayerItem(index, #itemnumber#, #value#, #dir#) ```
  5. I fixed again a mistake. Put this at the bottom, infront of End Sub in Profil.ess: (It must be at the end!) ``` Call CustomMenuLabel(Index, ElementIndex, "Kills: " & GetVar("Scripts\charextras\" & GetPlayerName(Index) & ".ini", "KillCounter", "Kills"), 20, 100 + (ElementIndex - 1) * 20, 10, WHITE, LEFT, 400, 20) ElementIndex = ElementIndex + 1 ```
  6. Kk. I'll add that it only works with ES.
  7. It counts how many kills the players have and display it in their profile. Only works with ES. Here one picuture: ![](http://www.freemmorpgmaker.com/files/imagehost/pics/a314a5fb35a8f24f6f12d1b6c7021261.JPG) First make a new Folder 'charextras' in the folder Scripts. Add this in OnDeath.ess: ``` Sub OnNPCDeath(Index, Map, NPCNum, NPCIndex) killamount = (GetVar("Scripts\charextras\" & GetPlayerName(Index) & ".ini", "KillCounter", "Kills") + 1) Call PutVar("Scripts\charextras\" & GetPlayerName(Index) & ".ini", "KillCounter", "Kills", (killamount)) ``` and add this at the bottom infront of End Sub in Profil.ess: ``` Call CustomMenuLabel(Index, ElementIndex, "Kills: " & GetVar("Scripts\charextras\" & GetPlayerName(Index) & ".ini", "KillCounter", "Kills"), 20, 100 + (ElementIndex - 1) * 20, 10, WHITE, LEFT, 400, 20) ElementIndex = ElementIndex + 1 ``` Add this in OnNewChar.ess: ``` Sub OnNewChar(Index, CharNum) Call PutVar("Scripts\charextras\" & GetPlayerName(Index) & ".ini", "KillCounter", "Kills", "0") ```
  8. Can you name your game and say more about it?
  9. Toucher1

    Making Money

    You can sell special items. If they pay you give them a code and they can use it to activate items…
  10. You can make a video with text and pictures or a little film. Then convert your video to .swf and put it in the Flash folder. Use this script: ``` Case # call flash(index, "#name#.swf") Exit Sub ``` put it in scripted tile or onclick… If you use scripted tile you can put it somewhere infront something like a castle and if the player want to the castle there will come a window with the video.
  11. Toucher1

    Player House

    If a player buys a player house and want to edit and save he will be kicked from the server with this message: ![](http://www.freemmorpgmaker.com/files/imagehost/pics/f0278c44e008fef43227489a165b918a.JPG)
  12. How i can add more tilesets in ES?
  13. Toucher1

    Flash CS5

    Where I can download? Edit: I found on the Adobe page. Long download time… Long installation...
×
×
  • Create New...