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

bboy44

Members
  • Posts

    229
  • Joined

  • Last visited

    Never

Everything posted by bboy44

  1. bboy44

    Shop Button?

    I want to know how to have a button visible when you log in, like Spells, Inventory, Character, etc. And when you click the button it opens a shop. This is what I tried to do but it didn't work: In frmMirage: Under Private Sub Form_Load() I added: ``` lblVoteShop.Picture = LoadPicture(App.Path & "\GUI\Buttons\VoteShop.bmp") ``` Then I added: ``` Private Sub lblVoteShop_Click() PlaySound(DBSound) Call GoShopping(Index, 50) picVoteShop.Visible = True End Sub ``` Then: ``` Begin VB.Image lblVoteShop Height = 420 Left = 90 Picture = "\GUI\Buttons\VoteShop.bmp" Top = 60 Width = 750 End ``` Help?
  2. Is there any tiles available of flying ships, like the ones used in maplestory? Ex: ![](http://fc00.deviantart.net/fs14/f/2007/105/0/c/Lith_Harbour_MapleStory_Ship_by_JibberCube.png)
  3. bboy44

    World Map

    Is this a good map? How to improve? ![](http://i47.tinypic.com/3a6nl.jpg)
  4. bboy44

    Mount Sprites

    Some mount sprites I put together. ![](http://i46.tinypic.com/2hn9ll3.jpg)
  5. bboy44

    Sprite change back?

    This isnt what you wanted but it does the same thing.. I dont think there is a change sprite back. ScriptedTile for when reaching the end of the dock: ``` Case X If GetVar("Scripts\SpriteChange\" &GetPlayerName(Index)& ".ini","Sprite","ChangedSprites")="No" Then Call PutVar("Scripts\SpriteChange\" &GetPlayerName(Index)& ".ini","Sprite","SpriteNumber",GetPlayerSprite(Index)) Call PutVar("Scripts\SpriteChange\" &GetPlayerName(Index)& ".ini","Sprite","ChangedSprites","Yes") Call SetPlayerSprite(Index, #Ship Sprite#) Call PlayerMsg(Index,"You are now sailing.", WHITE) Call SendPlayerData(index) Call PlayerWarp(Index, #MAP#, #X#, #Y#) Call SetPlayerPaperdoll(Index,0) End if ``` ScriptedTile when you go back to the dock (This will turn you into the sprite you were before you walked on the dock.) ``` Case X Call PutVar("Scripts\SpriteChange\" & GetPlayerName(Index) & ".ini","Sprite","ChangedSprites","No") Call SetPlayerSprite(Index, Getvar("Scripts\SpriteChange\" & GetPlayerName(Index) & ".ini","Sprite", "SpriteNumber")) Call SendPlayerData(index) Call PlayerMsg(Index,"You have reached your destination.", WHITE) Call PlayerWarp(Index, #MAP#, #X#, #Y#) Call SetPlayerPaperdoll(Index,1) Exit Sub ``` Just make a folder in your scripts folder named "SpriteChange".
  6. bboy44

    Rely Need Help

    Kind-of a way.. right click your client.exe, click properties, click compatibillity, check "Run in 640X480 Screen resolution".
  7. If you want to have a spell or item that changes your sprite I have a script you can use.
  8. Are you saying that you dont know how to make yourself an admin on your server? Open up your server, go to Players, click on your character, then select "Give access".
  9. bboy44

    Changing Sprites

    When you change sprites is there anyway to make it to where it doesn't show your papordoll? I have scripts that change my sprite when I use a spell and I dont want it to show my armor. But when you change back, it will show your papordoll agian.
  10. bboy44

    My GUI

    Alright, thanks guys
  11. bboy44

    My GUI

    Uhm, you didnt help make it..
  12. bboy44

    My GUI

    Tell me what to change?
  13. I didn't know where to put this so I just put it here. If anyone needs help making GUIs I can try to help make one for you. Just give me an idea of what you want it to look like and ill try my best. Here is the one I made- ![](http://i44.tinypic.com/iojhub.jpg)
  14. bboy44

    My GUI

    Here is my Main Menu GUI, tell me if you like it. ![](http://i44.tinypic.com/iojhub.jpg)
  15. Oh, here.. ![](http://i41.tinypic.com/2zsxkyc.jpg)
  16. Gah.. ![](http://bl123w.blu123.mail.live.com/att/GetAttachment.aspx?tnail=0&messageId=07dc580c-051c-462d-82d2-40490e596c35&Aux=44|0|8CBBF18A64B7510|)
  17. I did what you said Admiral but it still does not seem to work. > Case 1 > If GetVar("Scripts\Charextras\" &GetPlayerName(Index)& ".ini","Mount","IsMounting")="No" Then > Call PutVar("Scripts\Charextras\" &GetPlayerName(Index)& ".ini","Mount","SpriteNumber",GetPlayerSprite(Index)) > Call PutVar("Scripts\Charextras\" &GetPlayerName(Index)& ".ini","Mount","IsMounting","Yes") > Call PlayerMsg(Index,"You mounted", WHITE) > Call SetPlayerSprite(Index, 109) > Call LockAttack(Index, 1) > Call LockSpells(Index, 1) > Call SendPlayerData(Index) > Call SetSpeed(Index, "walk", 16) > Else > Call PutVar("Scripts\Charextras\" & GetPlayerName(Index) & ".ini","Mount","IsMounting","No") > Call SetPlayerSprite(Index, Getvar("Scripts\Charextras\" & GetPlayerName(Index) & ".ini","Mount", "SpriteNumber")) > Call SetPlayerSprite(Index, 141) > Call LockAttack(Index, 0) > Call LockSpells(Index, 0) > Call SetSpeed(Index, "walk", 4) > Call SendPlayerData(index) > Call PlayerMsg(Index,"You dismounted", WHITE) > End if
  18. I got this mount script: http://www.touchofdeathforums.com/smf/index.php/topic,39617.0.html When I put it inside of a case then make an item with that case it only mods my speed. It doesnt change my sprite, any help? Here is what it looks like: > Case 1 > If GetVar("Scripts\Charextras\" &GetPlayerName(Index)& ".ini","Mount","IsMounting")="No" Then > Call PutVar("Scripts\Charextras\" &GetPlayerName(Index)& ".ini","Mount","SpriteNumber",GetPlayerSprite(Index)) > Call PutVar("Scripts\Charextras\" &GetPlayerName(Index)& ".ini","Mount","IsMounting","Yes") > Call PlayerMsg(Index,"You mounted", WHITE) > Call SetPlayerSprite(Index, 109) > Call LockAttack(Index, 1) > Call LockSpells(Index, 1) > Call SetSpeed(Index, "walk", 16) > Else > Call PutVar("Scripts\Charextras\" & GetPlayerName(Index) & ".ini","Mount","IsMounting","No") > Call SetPlayerSprite(Index, Getvar("Scripts\Charextras\" & GetPlayerName(Index) & ".ini","Mount", "SpriteNumber")) > Call SetPlayerSprite(Index, 141) > Call LockAttack(Index, 0) > Call LockSpells(Index, 0) > Call SetSpeed(Index, "walk", 4) > Call SendPlayerData(index) > Call PlayerMsg(Index,"You dismounted", WHITE) > End if It is inside Sub ScriptedItem. If anyone could help me I would greatly appreciate it.
  19. Oh, thats wierd. I just typed it in and nothing bad has happened sence, I really like it.
  20. I'm not sure if this has already been said but, I found out a way to make your domain name alot shorter. 1- Go to http://www.webs.com/ or http://www.co.cc/ and make your website. 2- After your done making your website you can go to http://www.dot.tk/en/index.html?lang=en and enter your domain name where it says: "Enter your URL hereā€¦" Example: Name.webs.com. Then hit next. 3- Rename your website to whatever you want. Example: Name.tk Whatever you update on your website, it will show up on your .tk website. Hope this helped, if you did not understand something just post a reply. ![](http://i42.tinypic.com/2wd0wsm.jpg) ![](http://i41.tinypic.com/1174juv.jpg)
×
×
  • Create New...