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

masa

Members
  • Posts

    28
  • Joined

  • Last visited

    Never

Posts posted by masa

  1. @Piteq:

    > Is there possible to make invisible button, but when i click another button first button become visible?
    >
    > Sorry for English, Piteq

    add new timmer
    timer interval 1
    if button1.visible = true then
    button2.visible = false
    else
    button2visible = true
    end if
  2. find for fringe

    in moddirectdraw7 add

    Public Sub BltMapCustomTile(ByVal x As Long, ByVal Y As Long)
    Dim rec As DxVBLib.RECT
    Dim i As Long

        ' If debug mode, handle error then exit out
        If Options.Debug = 1 Then On Error GoTo errorhandler

        With Map.Tile(x, Y)
            For i = MapLayer.custom To MapLayer.custom
                ' skip tile if tileset isn't set
                If (.Layer(i).Tileset > 0 And .Layer(i).Tileset <= NumTileSets) And (.Layer(i).x > 0 Or .Layer(i).Y > 0) Then
                    ' sort out rec
                    rec.top = .Layer(i).Y * PIC_Y
                    rec.Bottom = rec.top + PIC_Y
                    rec.Left = .Layer(i).x * PIC_X
                    rec.Right = rec.Left + PIC_X
                    ' render
                    Call Engine_BltFast(ConvertMapX(x * PIC_X), ConvertMapY(Y * PIC_Y), DDS_Tileset(.Layer(i).Tileset), rec, DDBLTFAST_WAIT Or DDBLTFAST_SRCCOLORKEY)
                End If
            Next
        End With

        ' Error handler
        Exit Sub
    errorhandler:
        HandleError "BltMapcustomTile", "modDirectDraw7", Err.Number, Err.Description, Err.Source, Err.HelpContext
        Err.Clear
        Exit Sub
    End Sub
  3. @Alatar:

    > A partir de ahora este topic queda como el sitio donde los usuarios pueden presentarse. Modificaré el titulo del mismo, y en este tema queda permitido el necropost por el momento, aunque las otras normas siguen vigentes.
    >
    > ______________________________________________________

    Que significa necropost?
  4. @WarriorsOnline:

    > How do I change my server IP adress?

    You need edit host file open c:\widows\system32\drivers\etc\host
    open whit notepad
    now at botom ad line
    127.0.0.1                you.doman.com
    if don't have a domain remplace whith your ip
    example
    127.0.0.1                255.255.255.255
    Sorry my english i'm spanish
  5. hi i created a script transformation but such transformations the paperdoll cow is ugly as hidden and when complete the transformation back to normal?
    my script its a module called "moditem" the script of cow is

    >! Select Case Script
    >! Case 1
    Call SetPlayerSprite(index, 6) ' 6  is my cow sprite
                Call SendPlayerData(index)
                End If
    thanks and sorry my english i'm spanish (español)
×
×
  • Create New...