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

Olimar72

Members
  • Posts

    112
  • Joined

  • Last visited

    Never

Everything posted by Olimar72

  1. Olimar72

    RTE:91???

    @killerbees: > Hello, > > I get this run-time error on my server: > > "Run-time error 91: Object variable or Width block variable not set." > > How would i fix this? > > Thanks I'm no debugger, But I'm sure if you want answers you should be more specific. As in, when you start up the server, when someone connects to the server, ect. ~Olimar72
  2. @The: > You aren't helping by not reading the topic and not making decent posts. > > @OP No, there isn't, unless you went inside the source, Copy and pasted the one for Block, made a new tile and removed the part for Arrows Thank you for actually giving me an answer, unlike the other spammers (Not mentioning any names even though you can see them >_>). Where can I find the source code for block? Would it be on Eclipse somewhere or on the forums?
  3. @Hawkins: > Hi, guys, and here is the Great Runescape Music Database. Containing 643 Runescape songs from Method of Madness to Dogs of War. XD > Yes, this is real. I couldn't beleive it when I found it either. I had been searching for the Runescape music to play for my sisters, and I found the download. I knew there were some real Runescape lovers on this forum, so I decided to post. XD > > http://www.freemmorpgmaker.com/files/imagehost/pics/ae4bccfb5bd57378eada4088c13ade3a.zip There's a runescape forum for a reason.
  4. @Kimimaru: > Try using the Key attribute. That may work. As for your second inquiry, I'm not sure why the arrow is going through the NPC, sorry. Darn, key didn't work. >_>
  5. oh… Is there a way to make them attack mods?
  6. When I place a block, it blocks me, npc's, and arrows. I try Roof Block, Guild Block, and Class Block. Those block me but not NPC's or arrows. I tried NPC avoid. It block the NPC's, but not the arrows or me. Is there any tile that blocks me, the NPC's but NOT the arrows? Also, sometimes when I'm firing a ranged weapon, sometimes the arrow goes right through the NPC and does no damage! ~Olimar72
  7. @[THE-KRIS: > link=topic=51994.msg547608#msg547608 date=1253447464] > he shouldnt of had to. unless his computers just ducked Unless his computer ducked?? What does that mean????
  8. So I set my custom-drawn Chaos Gloop to Sight - 10 tiles, and the rest of the stats. I also set it to "Attack on Sight". So it turned to me, I was 2 spaces away from it but it didn't attack me. Why?
  9. @[THE-KRIS: > link=topic=51994.msg547446#msg547446 date=1253414162] > 1\. add my msn [email protected] > > 2\. is he putting in the correct ip? ipchicken.org or whatever it is nowadays. are you definate that the port is forwarded to teh right IP adress? if you dont have static ip's set up through your router you may have to change it each time if theres more than one computer on the network. 1. No. Anyways, it worked now. He reinstalled ELI and rebooted his computer and now it works. Wierd? He already installed ELI and rebooted for a previous version of the game and it worked. Why did he have to install again?
  10. @Hippoman: > it wasnt that good. > > what does PHR33 Sp00f Pl0x mean? I think PHR33 Sp00f Pl0x = Phree Spoof Plox = Free Stuff Please I liked it btw. :azn: EDIT: Oh wait, CRUD this is a necrobump >_
  11. @Hey880: > well your game is port forwarded right? Yes. It worked just fine when he tried my previous version. I just changed the GFX, and now it doesn't work. Yes, he did download the new client and everything. I only added 1 more item to item.bmp. Now it doesn't work!!
  12. OK, so I have my IP and Port set to 127.0.0.1 and 4000 and the player client set to what my IP is and Port 4000. I tried using IPchicken to get my IP. I use PDFport checker to check and my port 4000 is open for UDP and the other one. I run the client on a friends computer, (After installing ELI2) and it's offline. I try setting the friends IP to the IP I got from my PDFport checker and it still said it was offline. I've done this same thing for a different eclipse game I made (An older version of the current game) and it was online. Also, my client works just fine. What the heck is wrong??? ~Olimar72
  13. @Godlord: > @Kratos: > > > There is the code :) place this in main.txt under scripteditems. > > ``` > > Case X > > Dim Target > > Dim Damage > > Target = GetPlayerTargetNPC(Index) > > Damage = Rand(1, 15) > > > > If CanTake(Index, 10, 1) Then > > Call CastTheSpell(Index, 1, "magic16.wav") > > Call DamageNPC(Index, Target, Damage) > > Call TakeItem(Index, 10, 1) > > Else > > Call PlayerMsg(Index, "You need a circle to preform alchemy", WHITE) > > End If > > Exit Sub > > > > ``` > > First off you will need Godlords inventory script. > > http://www.touchofdeathforums.com/smf/index.php/topic,28174.0.html > > > > Next you will need this at the bottom of your main."Before the testscripts" > > ``` > > Sub CastTheSpell(Index, SpellNumber, Sound) > > ' Example Use: > > ' Call CastTheSpell(Index, 3, "magic1.mp3") > > ' Assuming the spell (that is assigned the animation you want) is number "3". > > Dim Target > > Dim X > > Dim Y > > Dim HP > > Dim Map > > Map = GetPlayerMap(Index) > > If GetPlayerTargetNpc(Index) > 0 Then > > ' Target is NPC > > Target = GetPlayerTargetNpc(Index) > > ' Set the variables > > HP = GetMapNpcHP(Map, Target) > > X = GetNpcX(Map, Target) > > Y = GetNpcY(Map, Target) > > Else > > ' Target is Player > > Target = GetPlayerTarget(Index) > > ' Set the variables > > HP = GetPlayerHP(Target) > > X = GetPlayerX(Target) > > Y = GetPlayerY(Target) > > End If > > ' Cast the spell animation on the Player or NPC; play sound. > > Call SpellAnim(SpellNumber, Map, X, Y) > > Call PlaySoundToMap(Index, CStr(Sound)) > > End Sub > > > > ```Credits to Admiral for that. > > > > -How to Use- > > X is the case number, replace it with a free case number. > > > > Rand(1, 15) is the damage 1-15 damage."Make it however much you want" > > > > CastTheSpell(Index, 1, "magic16.wav") 1 is the spell you want to show, and magic16.wav is the sound. > > > > TakeItem(Index, 10, 1) 10 is the item number, and 1 is how many it takes of it. > > > > There you have it, that should work for what you need. > > If you have any problems let me know. > > > > Regards > > Kratos, The Angel > > I recommend to use http://www.touchofdeathforums.com/smf/index.php/topic,51481.0.html instead. > > Regards, > Godlord. OK, thanks I'm trying this now. BTW, shouldn't it be under sub scriptedspell instead of sub scripteditem? Sigh, it's not working. Also, I don't understand how to use the Godlords new item script thing. I am such a noob ata scripting. :(
  14. @Tyr: > Now basically for your spell, as always there are 2 options. > > 1\. The scripted spell as mentioned above, I recommend you to go through the scripting tutorials here. Its not a hard script, You can write it yourself in > 2\. The source coding (the way I prefer), by adding more variables attached to the item rec. Install them and give a value (f.e. 5, so it costs you 5 runes) > On the spellcast sub look where it checks for MP, also check for runes there.. and remove after like MP. > > Poopy stuff, but as your a newcomer… have fun playing with this. So should I use SadScript or just regular script? And is source another word for script? Also, where do I get SadScript? I googled but found nothing. I'm a scripting noob, I know. My first time ever attempting script so it's really confusing for me.
  15. @[SawQuart: > Jungletoe link=topic=51872.msg545780#msg545780 date=1253043663] > It would be sadscripted, not sourced, unless you want all your items to be that way. > > ``` > Sub ScriptedSpell > Case 1 > GetPlayerInventory (index) > DelItem (index, item = {insert here}) > > ``` > Dont take that script. I'm a complete noob at scripting. Hopefully somebody could fix it for you. > > Thanks, > Jungletoe Well, that looks like the delete item part. Now just to get the damage part. Anyways, what's sadscript? Script that's really boring so it makes you sad?
  16. How do you make it so that spells don't use MP, but items (E.G. Runes from Runescape). I figured you would have to script something to take away the items when cast. So anyone have a script that will make attack (-HP) spells that use items? Thanks in advance, ~Olimar72~
  17. @rockgamer423: > I agree with Godlord. You are making no sense. The IP should be 127.0.0.1, and you have to run server.exe before going to your Client. If you are the owner of the game, your client should be set to IP 127.0.0.1 and the players client, the one you send to other people, should have the other IP.
  18. @Commander: > link=topic=51129.msg537631#msg537631 date=1251881699] > did you give him the whole client, cause it sounds like you just gave him the client.exe file :P Nope, the whole client folder, same as mine. Not server folder though. Duh.
  19. He just tried to reboot his computer. Still errors. He's gonna try the Vista fix, deactivating firewall, and DirectX. Also, I'm using Eclipse 2.7\. ATM. I tried downloading 2.8 but the zip file still said 2.7. So I could possibly be using 2.8. Is that the most recent version? If not, what is? And what's eclipse stable?
  20. @Godlord: > @2: did he read topic 50010? 50015 is especially for Vista and 7, not for Windows XP and prior. > > Regards, > Godlord. Just did. Didn't work. He still gets errors like "Cannot read from config", "Cannot load colours", "RTE 339". Would firewalls possibly block the library files from reading or something? And he doesn't have Active X Control, would that matter?
  21. @[Šß: > 超人 Ã…Â hÃdÓw ñíñjä ¤VÃ¥löñ¤ ã‚· link=topic=44128.msg535601#msg535601 date=1251676651] > torents xD If you could post a link, that would be SO handy. I can't seem to find one… :sad:
  22. @Harris: > Visual Basic 6.0. > > Nuff said. From what I've seen, it looks like I have to buy it. :icon_crap: Anywhere I can get it for free or some other free program that would work with this tutorial?
  23. @ÅÐмiядζ: > #1 - Give the NPC some stats (health, str, etc); let me know if it talks then (set as "Friendly"). I put in stats, didn't work, I put in NPC avoids around them and they talked… :huh: @ÅÐмiядζ: > #2 - What didn't work, exactly? You may want to check the Bugs and Errors board. Updated my main post.
  24. #1 - NPC's won't talk to me. When I set an NPC to friendly, shopkeeper, or guard, they won't talk when I press ctrl. Only attack when attacked and attack on sight will make them talk. Why??? #2 - My friend tried my game client on Windows XP. He downloaded the ELI 2 and followed the installer (Saving it to Windows 32). The client didn't work. He tried installing ELI 1 and it still didn't work. He tried all those steps on a Vista computer and it all worked. Isn't EE 2.7 compatible with XP? He got RTE 339 which is caused by not having ELI but he already ran BOTH.
×
×
  • Create New...