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

Zamin

Members
  • Posts

    229
  • Joined

  • Last visited

    Never

Everything posted by Zamin

  1. Nice little nifty thing ;p
  2. OK Guys, I've tested it many times on EE 2.8 and it works fine. The instructions are provided on the first page in the first post on how to install it. If you are having problems then you probably missed something. Most like the VB source edits. Please go back and look closely. Although, if you are really really stuck and don't know what to do, don't hesitate to post for help here. I've revieved a new PMs asking me to make the quest Eclipse Stable compatible. So I did. THe process is not much different than the EE 2.8 installation. I also made everything compatible with the most updated GIS so no more headaches. Although CQS file still exists. This time CQS file contains the stuff which you were suppose to add at the end of Main file. And I also changed the name from CQS.txt to CQS.ess (sounds so much cooler now). Below is the basic Eclipse Stable.rar. By this I mean I downloaded the most updated ES and installed the QuestSystem on it. This means everything is aleady done for you. All the VB source edits and all the SadScript addons. I suggest if you are having problems installed the script, download this and take a look at this. Or if your starting to make your own game and want a Quest System, download this and see if you like it. I am trying to make this post as small as possible. Please note that I fixed a small bug, while I noticed while doing this. Before you used to get an error if you had your quest item equipped (for some reason) and went to the quest guy. Now you don't. Please download the file and take a look at it. If you need me to make a full, formal installation guide for Eclipse Stable then please let me know. If you need me to put up a BIN file for EE 2.8 which has QuestSystem already installed then also post here and let me know. Before new year please. [Click Here to Download Eclipse Stable with QuestSystem Installed](http://www.vgexpert.com/Downloads/EclipseStable.rar) -Thanks
  3. @Lam3r: > Yep,``` > Function GetInvItemslot(index, F_item_num, F_Min_value, F_Min_dur) > ``` > And the command list you should be looking @ now is [HERE](http://www.touchofdeathforums.com/smf/index.php/topic,28153.0.html) > > ~ Lam3r How do I use this function to check whether the given item is equipped or not?
  4. Hello, Kind of a noobish question. Is there a sadscript command to check whether the item is equipped or no? I checked the "All Commands' topic and foudn nothing. -Thanks
  5. Did you do the source edits? It worked for me. I am in the process of installing EE and VB. I will try everything from scratch. Please give me some time. -Thanks
  6. It works fine but Zetasis is having problems for some reason. Zetasis, I got your message. How about I install the quest system in a new 2.8 engine and give it to you. Will you be able to add your scripts later yourself? -Thanks
  7. @Zetasis: > Okay I added this quest system and I must say this is great. I'm having porblems getting it to work though. When ever I try and talk to the quest NPC nothing seems to happen. When I push the page down button the quest log will load up so I am not sure if it is my scripts or not. Here is my main.txt will someone please look at it and let me know if I installed everything right? If not would you please let me know what I did wrong and explane how to fix it? Thank you very much. Hello, OK, the truth is. I've kinda moved on frmo this forums. I just dropped by after a few months to see how everything is running. I am sure you were not able to install the script properly because I remember taking out all the possible bugs and asked many to test the system. It will be amazing if someone else can look at your main. I have exams 'till Dec. 20th. If no one helps you out, I will find some time and come back to look at your code. Hopefully, I can still remember my algorithm. I am sorry, this is the best I can offer. -Thanks
  8. Get iPhone if anything man. In my opinion. If you still wanna get iTouch, then buy it. I don't think they will ever add a camera to iTouch.
  9. OK, it should work now: ``` Sub Brsm(Index) Dim br Dim ir Dim st Dim si Dim go Dim test test = Rand(1,2) si = Rand(1,2) go = Rand(1,2) st = Rand(1,2) ir = Rand(1,2) br = Rand(1,2) If CanTake(Index, 201, 1) Then Call PlayerMsg(Index,"Attempting to smelt...", 10) If br = 1 Then Call PlayerMsg(Index,"Smelt successful! You get a bronze bar!", 10) Call GiveCurrency(Index, 211, 1) Call TakeItem(Index, 201, 1) End If If br = 2 Then Call PlayerMsg(Index,"Failed to smelt, ore destroyed", 12) Call TakeItem(Index, 201, 1) End If ElseIf CanTake(Index, 202, 1) Then Call PlayerMsg(Index,"Attempting to smelt...", 10) If ir = 1 Then Call PlayerMsg(Index,"Smelt successful! You get a iron bar!", 10) Call GiveCurrency(Index, 212, 1) Call TakeItem(Index, 202, 1) End If If ir = 2 Then Call PlayerMsg(Index,"Failed to smelt, ore destroyed", 12) Call TakeItem(Index, 202, 1) End If ElseIf CanTake(Index, 203, 1) Then Call PlayerMsg(Index,"Attempting to smelt...", 10) If st = 1 Then Call PlayerMsg(Index,"Smelt successful! You get a steel bar!", 10) Call GiveCurrency(Index, 213, 1) Call TakeItem(Index, 203, 1) End If If st = 2 Then Call PlayerMsg(Index,"Failed to smelt, ore destroyed", 12) Call TakeItem(Index, 203, 1) End If ElseIf CanTake(Index, 204, 1) Then Call PlayerMsg(Index,"Attempting to smelt...", 10) If si = 1 Then Call PlayerMsg(Index,"Smelt successful! You get a silver bar!", 10) Call GiveCurrency(Index, 214, 1) Call TakeItem(Index, 204, 1) End If If si = 2 Then Call PlayerMsg(Index,"Failed to smelt, ore destroyed", 12) Call TakeItem(Index, 204, 1) End If ElseIf CanTake(Index, 205, 1) Then Call PlayerMsg(Index,"Attempting to smelt...", 10) If go = 1 Then Call PlayerMsg(Index,"Smelt successful! You get a gold bar!", 10) Call GiveCurrency(Index, 215, 1) Call TakeItem(Index, 205, 1) End If If go = 2 Then Call PlayerMsg(Index,"Failed to smelt, ore destroyed", 12) Call TakeItem(Index, 205, 1) End If ElseIf CanTake(Index, 206, 1) Then Call PlayerMsg(Index,"Attempting to smelt...", 10) If test = 1 Then Call PlayerMsg(Index,"Smelt successful! You get a 206 bar!", 10) Call GiveCurrency(Index, 216, 1) Call TakeItem(Index, 206, 1) End If If test = 2 Then Call PlayerMsg(Index,"Failed to smelt, ore destroyed", 12) Call TakeItem(Index, 206, 1) End If Else Call PlayerMsg(Index,"No Ore To Smelt", 12) End If End Sub ``` Haven't tested it though. Let me know how it goes. Also, please keep everything nicely alligned as shown above. It is really hard to read code without any indentation. I'm sure you will note that too. :) -Thanks
  10. OK, let me know if you need anything. -Thanks
  11. @crowdz: > Thanks alot. What about attack? CTRL Key
  12. OK, this is complete BS. Everyone either take hosting from 000space or lunarpager. My hosting is not provided on Eclipse anymore. Topic Closed. -Thanks
  13. Zamin

    Bump

    ~~_**bump**_~~ My bump is coolest, you can't even see it :)
  14. OK, i really didn't wanted to make this a contest of who gives the best hosting. But lets compare their $2.99 package with my $2.99 package. I'll list the differences. If anything here I don't mention, it means that we offer the same thing with the same amount. * They win in file transfer and bandwidth, no doubt * They offer 50 Free Add-on/Parked Domains - I offer Unlimited * They offer 50 Sub Domains - I offer Unlimited * They offer 50 MySQL Databases - I offer Unlimited * They mention e-mail accounts, not the amont - I offer Unlimited E-mail accounts * They didn't mention e-mail lists - I offer Unlimited e-mail lists * They don't offer Apache - I do * Don't know their cPanel version - Mine is cPanel 11 * They don't mention Spam Assassin - I do * They don't mention how they generate website statistics - I offer Awstats, bandwidth, etc…. * They didn't mention FrontPage Extensions - I offer it * They didn't mention CGI not Cron Jobs - I offer it * They didn't mention Auto Responders - I offer it OK. Like I said, i didn't wanted to make this into a competition. 000Space is a big company, compare to mine. That does not mean that I don't have to right to advertise my hosting. I simply laid out my packages with prices, it is up to the people to choose. Like i mentioned, I am not forcing anyone. Opinions are acceptable, but opinions should not turn into any sort of attacks. My hosting packages still stand _as_ they are. -Thanks
  15. @[GrimTechâ„¢: > Skillzalot link=topic=51732.msg544383#msg544383 date=1252827197] > im not trying to be rude. im just pointing out your prices are kind of high for the little bit you get Thank you for your honest opinion. I will take it into ocnsideration. -Thanks
  16. @[GrimTechâ„¢: > Skillzalot link=topic=51732.msg544380#msg544380 date=1252826832] > Dude i can find at least 5 free hosts that have no banners and give all this. You should stop being ducking greedy cause on eclipse most people are between 14-22\. Which means they have more important things to spend thier money on then some guy trying to rip them off. Trying not to be rude but its the truth Ok thats enough, i'm not gonna make this into a debate. I'm not forcing anyone. If there is better hosting packages out on web, go for it. My offer still stands. -Thanks
  17. @[GrimTechâ„¢: > Skillzalot link=topic=51732.msg544378#msg544378 date=1252826495] > There are free hosts that offer more than this. Sorry dude. Not to be rude but there are serveral hosts that will host for free and still give you all this. They have that annoying banner on top/button of your page which you can not remove. Not to mention they crank up ALL of their users into one server, over time over-loading it, which increase lag by 100000000%. They mark you down as a free member. They give crap support to free users and their reply rate is too much. If one has money, paid hosting is the way to go. But one can always first experience free hosting before buying. -Thanks
  18. @Commander: > link=topic=51732.msg544358#msg544358 date=1252816225] > Thats easy to go over, > only 1gb if space? hmm, this is gonna sound rude but man, there are alot of better paid hosts than this one. Lol, i was thinking the same. But I wanna wait and see if people get interested enough or not. Besides, Eclipse is not my primary source of income. I'm just greedy so I posted here as well. lol As for 2 gig bandwidth, no way an eclipse site going over this. lol. I am suuuuuuuuuuuuuuuuure. Suuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuure. But i'll ask a few eclipse game owners who already have a site and then upgrade package if necessary. Anyways, ya your right altogether. But I'll wait a week or so and then perhaps upgrade the package. :) And no, you weren't being rude. Honesty is nothing to be ashamed of. EDIT: This package is only $0.99 USD, don't you think customers are getting for what they paid for? Just looking for your opinion. -Thanks
  19. 1\. OK, replace your entire Sub ScriptedNPC with this: ``` Sub ScriptedNPC(index, script, npcSlot) Select Case Script Case 0 Call PlayerMsg(Index, "This scripted NPC has no apparent use.", WHITE) Exit Sub Case 1 Call PlayerMsg(Index, "This scripted NPC has no apparent use.", WHITE) Exit Sub Case 2 '***********************Begin Quest*********************** Dim NPCnum Dim QuestCount Dim IndexCount Dim Amount QuestCount = 1 IndexCount = 1 Amount = Int(GetVar("\Scripts\Quests\QuestSystem.ini", "QUESTS", "Amount")) NpcNum = GetMapNPCNumber(GetPlayerMap(index), npcSlot) '***********************Begin Initiate Quest*********************** Call InitiateQuest(Index) '***********************End Initiate Quest*********************** Call CustomMenuClose(Index) Call CustomMenuShow(Index, "QuestExtra", "\GUI\CUSTOM\QuestExtra\Menu.gif", 1) Call CustomMenuLabel(Index, 0, "Close!", 150, 280, 8, 4, 0, 40, 15) Do While QuestCount
  20. @Lam3r: > I don't get it? So you can like register unlimited domain names for free once u buy any of the hosting plans? No no, you have to register your own domain name with a domain registrar. You can use as many domains on your hosting as you want. Normally there is a limit. Hope I am clear. -Thanks
  21. Zamin

    Incremential quests

    Ok, look at my quest system http://www.touchofdeathforums.com/smf/index.php/topic,51512.msg544114/topicseen.html#new It requires a lot of reading, lol. And you will need source edit. If you want, I can add everything for you in a default Main.txt. I will also give you the client and server with the soure edits already implemented. Or you will have to hand make this, which is also a huge pain. lol -Thanks
  22. Zamin

    Incremential quests

    So the reward you get from NPC A, you want it to be used for NPC B? So for example, you get your reward 'rock' from NPC A, after you finish the quest. Then you want NPC B to require the item 'rock' which you recieved from NPC A? Correct me if i'm wrong. -Thanks
  23. Lol, my bad. I did post 2 images in the first post, but here are some more. I understand why one would need more screenshots before adding such a messy script, lol. Images are attached in attachment. For QuestReset.jpg. It shows that you can reset all quests of a certain user by using the following command (Zamin = target Player: ``` /QuestReset Zamin All ```Or reset a specific quest, 2 in this case: ``` /QuestReset Zamin 2 ``` Script checks whether the player and/or quest number exists or not. If it does not, it will list an error and terminate command. -Thanks
  24. @Minilinkki: > screens!! Screens? What screens? Or is this a typo and you wanted to write 'Screems!!'. lol ;) -Thanks
×
×
  • Create New...