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

Sowether

Members
  • Posts

    20
  • Joined

  • Last visited

    Never

Sowether's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. Thanks…. I think I'm almost there. When I finish it I'll post a tutorial to everyone else. XD
  2. Someone help me please…. Actually, I've already done somethings but I just don't know how to finish them.... Look: In Class.ini in the malesprite, I put the sprite numbers separeted by /. And in Type ClassRec, I changed the MaleSprite as Long to MaleSprite as String, and did the same thing with the FemaleSprite. And I changed to as string in Client too. In frmNewChar, I also added two scrollbars, one for the male sprite and one for the female, so when the person clicks on it, the sprite changes. But now the only problem that I can't solve is to get the sprite numbers, make the client interpretate that and pass it to the scrollbars.... Sorry about my bad english :embarrassed: I know I'm asking a lot, but if somebody knows how to do that, please help me.
  3. Hi….. I would like to know if there is some way to change in the frmNewChar so the new player can choose his class and separately he can chooses his sprite. For example: He chooses class 1, and then in the sprite selection, appears the sprites that he can choose in class 1. Something like that. Thanks
  4. Try doing this: ``` If CanTake(Index, 156, 1) and CanTake(Index, 159, 1) Then Call TakeItem(Index, 156, 1) Call TakeItem(Index, 159, 1) Call PlayerMsg(Index, "Fish & Wc tutor: Thanks for helping!", WHITE) Call PutVar("Scripts\charextras\" & GetPlayerName(Index) & ".ini", "QUESTS", "Quest6", 2) Else Call PlayerMsg(Index, "Fish & wc tutor: You don't have the items I asked for yet, I'll show you again what I want.", RED) Call CustomMenuShow(Index, Map, "\GUI\Custom\quest6.bmp", 1) End If ```
  5. No, it won't work. You can't just catch any script in the internet and put in ecplise.
  6. Hi, I'm making a game and I would like to know how to put an option in the frmNewChar to choose the place where the people want to born and live. Like you can choose classes… Thanks, and sorry about my bad English... :P I'm Brazilian :azn:
  7. Sorry, I forgot about the server side….. :P And no, I had that idea from my own. But I think maybe I had the inspiration from some game, but I don't remember.
  8. Sometimes, when you are passing from a map to another, we get trapped with the message: "Receiving map…" So to try to fix this problem I created a Refresh button that will make you teleport to the same place and get out of this terrible message. I hope you like it and be usefull for you. :embarrassed: **In the Client Side:** _Go to _frmMirage_ and create a Picture Box exactly on the place you want the button_ **Click once in the Picture box** And under the options go to Picture and select the picture that you want to be the button **Click twice on the button** This will open the code window Under the code: > Private Sub "NAME OF YOUR PICTURE BOX"_Click() Add This: > Call SendData("refresh" & END_CHAR) > MyText = vbNullString Then search for this: > ' Refresh Player > If LCase$(Mid$(MyText, 1, 8)) = "/refresh" Then > Call SendData("refresh" & END_CHAR) > MyText = vbNullString > Exit Sub > End If And delete everything **Now in Server Side** Search for: > Public Sub Packet_Refresh(ByVal Index As Long) Change for this: > Public Sub Packet_Refresh(ByVal index As Long) > Call PlayerMsg(index, "Your map has been reloaded!", 14) > Call PlayerWarp(index, GetPlayerMap(index), GetPlayerX(index), GetPlayerY(index)) > Call SendPlayerData(index) > End Sub) Ok….. That's it Sorry about my bad English... I'm Brazilian Hope you like it
  9. Hi…. I need to change the name of a stat for another...... for example: Change Strength for Power Please someone help me
  10. Thx very much. It was this command that I was looking.
  11. Hi. I need some command that checks if a place is blocked or not. But I couldn't find anything that makes something like that. How can I do that?? Sorry for the bad English…. Thx
  12. I know… But I don't know the codes that I have to use to make the changes
  13. But….. how can I make this changes?
  14. Ok But where in the source I have to change to do that?
  15. Somebody Help me PLEASEEE!!!
×
×
  • Create New...