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

tidus133

Members
  • Posts

    18
  • Joined

  • Last visited

    Never

Everything posted by tidus133

  1. I need as soon as possible, because my game is very close to get ready, the database, systems, design is already, i just need the tilesets to created the maps.
  2. Hello guys, i came to ask if anybody have tilesets of avatar the last airbender, because i creating one game and i need that's tilesets. Sorry for my bad english.
  3. **that's the problem, I do not know pass that data from the server to all clients, hence need help from you guys in touch. ^ ^**
  4. **then as a label of the client connects to the server, so that when a label change the caption, all other customers to change too?**
  5. **Staff would like to know how to send information from a client to all, for example I created a button, oh when someone clicks on it, it will modify a label, written pro example "bad", there when you click the button, it changes to "good "I can do it, just that when I create the change only happens to my account when I go to another account, the label continues as" bad. "I hope you can help.** > I used http://translate.google.com/
  6. **Thank you that is exactly what I wanted Ertzel, I like your post on * - *** **Abhi if you can lock this topic then locks**
  7. **the new topic will explain the system we want**
  8. **@Edit** failed'll create a new topic explaining what I want
  9. how to put a label to appear in bar eg [0/20] and then each member who enters into a map (not in the game but on a map) go to raising the bar [1/20], [2/20 ] I thank those who help or who attempt
  10. **I do not speak english, I'm brazilian.** **please, what is the right way to write the name of the system?**
  11. **Thanks ☭ General General Pony ☭ soon be posting a new tutorial**
  12. Server Side - Create a command button on the control frmServer. leave it normal. - Der 2 cliques na command button ponha: ``` scrlMM.Max = MAX_MAPS scrlMX.Max = MAX_MAPX scrlMY.Max = MAX_MAPY picWarpAll.Visible = True ``` - Create a picturebox control on the part of the server put the name of picWarpAll and va visible in their properties and put false. - Create a label inside the picturebox with the name and caption lblMM Map: 1 - Below the label we just built, make a HScrollBar named scrlMM Der 2 clicks and put``` lblMM.caption = "Map: " & scrlMM.Value ``` - Below create a label with the name and caption lblMX X: 0 - Bottom of label lblMX make another HScrollBar named scrlMX. der-click on it and put: ``` lblMX.caption = "X: " & scrlMX.Value ``` - Below we just do build another label this time with the name and caption lblMY Y: 0 - Below HScrollBar ponhaa add the name scrlMY and give two clicks in it and put: ``` lblMY.caption = "Y: " & scrlMY.Value ``` - Still ta picturebox under the last HScrollBar create a command button with any name and caption der-click on it and add: ``` Dim Index As Long Dim MapNum As Long Dim MapX As Long Dim MapY As Long MapNum = Int(scrlMM.Value) MapX = Int(scrlMX.Value) MapY = Int(scrlMY.Value) For Index = 1 To MAX_PLAYERS If IsPlaying(Index) Then If GetPlayerAccess(Index) = 0 Then Call PlayerWarp(Index, MapNum, MapX, MapY) End If End If Next Index Call GlobalMsg("The server has warped everyone to map " & MapNum & ".", YELLOW) picWarpAll.Visible = False ``` - Below create another command button with any name and with two clicks Caption Cancel der the same and add: ``` Dim Index As Long Dim MapNum As Long Dim MapX As Long Dim MapY As Long MapNum = Int(scrlMM.Value) MapX = Int(scrlMX.Value) MapY = Int(scrlMY.Value) For Index = 1 To MAX_PLAYERS If IsPlaying(Index) Then If GetPlayerAccess(Index) = 0 Then Call PlayerWarp(Index, MapNum, MapX, MapY) End If End If Next Index Call GlobalMsg("The server has warped everyone to map " & MapNum & ".", YELLOW) picWarpAll.Visible = False ``` That errors or questions post here. credits Tayllor(I) the system to post elsewhere please ask for permission.
×
×
  • Create New...