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

Braydo25

Members
  • Posts

    112
  • Joined

  • Last visited

    Never

Posts posted by Braydo25

  1. Im not sure why my fishing script wont work, its ment to work for a tile that you step on… but when i place the scripted tile somewhere and then walk onto it with the needed item for fishing nothing happens, and even without the item, nothing happens. whats wrong? here it is:

    heres the part for the scripted tile
    ```
    'Sub ScriptedTile(index, Script)

    Case 0
      dim weapon
      weapon = GetPlayerWeaponSlot(index)
      If weapon = 0 Then
          Call PlayerMsg(index, "You don't have a Fishing Pole equiped!", 15)
          ElseIf GetPlayerInvItemNum(index, weapon) = 5 Then
          Call GoFishing(index, 6, 5, "Salmon")
          Else
          Call PlayerMsg(index, "You don't have a Fishing Pole equiped", 15)
      End If
    End Select

    ```
    Heres for the rest of it

    ```
    Sub GoFishing(index, item, maxlevel, name)
      Dim c
      Dim level
      level = maxlevel + 1
          If GetPlayerlevel(index) < maxlevel Then
            c = Int(Rnd * Int(level - GetPlayerLevel(index)))
            If c = 1 Then
                Call PlayerMsg(index, GetPlayerName(index) & " caught a " & name, 2)
                Call ReplaceOneInvItem(index, 0, item)
            Else
                Call PlayerMsg(index, GetPlayerName(index) & " found nothing!", 12)
            End If
          Else
            Call PlayerMsg(index, GetPlayerName(index) & " caught a " & name, 2)
            Call ReplaceOneInvItem(index, 0, item)
          End If
    End Sub
    ```

    whats wrong?
  2. Legacy Of Bane

    Legacy Of Bane Is A Medieval MMO Based On A Fantasy Setting In 1100 A.D. I'll Get To The Storyline Later In The Post. But First Off Here Is What We Are Currently Looking For:

    Skills In Staff We Are Looking For

    - Scripter With A Nice Amount Of Experience

    - GFX Artist (Must Know How To Work With Paperdoll, Spriting Experience)

    -Decent Experianced Mappers (2 more)

    Please Post An Example Of Your Work For Whatever Position You Are Applying For!

    My Abilities

    Well For Those Of You Who Think I'm Just Looking For Editors Etc To Leech Off Of Their Abilities I'm Not, I Have Many Abilities Of My Own, Here's Some Of Them.

    - HTML, CGI, Web Editing Experience
    - Currently Learning SQL For Web Account Management Which Will Be Developed Later
    - I'm A Decent Mapper, So Far I've Implemented About 75+ Or So
    - I Can Do Sprite Editing, Im Not Retarded With Sprites, I Actually Know How To Add Them, Edit Them Without Messing Up A Whole Sprite Sheet
    - I Know Some C++, Python (Does Eclipse Even Use C++ Or Python? Or Is It Just Source?)
    -I Can Make Installers and patches  :grin:

    Storyline
    (Hah I Actually Have A Notebook With All My Ideas In It For Every Possible Aspect Oh Wow  :roll:)

    Post Storyline Lore:

    In The Kingdom Of Monorea There Are 3 Races; The Humans, Gornin's, And The Moxin's. Over The Past 200 Years The Gornin Have Been Extending Their Borders Farther And Farther Into The Human Territory Near The Coast. The Moxin's Want To Help The Humans Against The Gornins (Gornins And Moxins Have Been Warring Since Anyone Can Remember) And Aid Them Against The Gornin's, The Gornin's Become Enraged After They Have Been Pushed Back Into Their Old Territory And Unleash A Plague Upon The Entire Kingdom Of Monorea. People Began To Die, Creatures Of The Kingdom Became Hostile And The Gornin's With The Help Of Their Leader Pushed Back Into The Human Kingdom. The Human's Are Being Slaughtered And The Moxins Have Become Weak From Constant Fighting, The Kingdom Of Monorea Needs A Hero To Push Back The Gornins One Last Time. Will You Be That Hero? (and thats pretty much the storyline, sorry for the bad grammer its 5am here and im extremely tired)

    Screenshots

    ![](http://img262.imageshack.us/img262/8541/interfacefg2.png)

    ![](http://img120.imageshack.us/img120/2548/sc1pm1.png)

    ![](http://img73.imageshack.us/img73/5580/sc2im8.png)

    You Can Check Out The Site At: www.legacy-of-bane.webs.com
  3. hi i wanted to make a tile that heals both hp and mp, but what i made doesnt seem to be working. i place tile 0 and it doesnt work on a map, then i tried tile 1 and it doesnt work. whats going wrong. please help

    Sub ScriptedTile(index, Script)
    Select Case Script
    Dim Q
    Dim W
    Dim Z
    Q=GetPlayerClass(Index)
    W=GetClassMaxMP(Q)
    Z=GetClassMaxHP(Q)

    Case 0
    Call SetPlayerMP(Index,W)
    Call SetPlayerHP(Index,Z)
    Call Playermsg(index,"Your Mana And Health Has Been Restored!",3)
    End Sub
  4. Ok, I was wondering how you would make a simple interactive chat window for an npc by scripting (since their isnt a speech editor in eclipse like there is in Elysium Source =/  ) so is there already a tutorial on this? or could anyone explain it to me?
  5. Hey Everyone, i was wondering how you edit the .frx for the ingame GUI to match a GUI That you made? if there anyway to change the background of the .frx file to the game.gif you made so that while editing the in game .frx you can just drag the buttons over to match your new gui image?
  6. Hi im new and dont quite understand how to get paperdoll to work, ive enabled it with a 1 in the data.ini server side but when i make an item and equip it i dont see it show up on the char. help plz
×
×
  • Create New...