Jump to content

.InyaProduction

Former Staff
  • Posts

    511
  • Joined

  • Last visited

  • Days Won

    10
  • Feedback

    0%

Everything posted by .InyaProduction

  1. Yes thats true. But you will avoid to go down on your first day with their servers
  2. Oh i just compile on windows atm i dont know about FreeBsd Errors very well just compiled there one time and never got that error
  3. mainline may not have the perforce revision 40k+ but it has the same features. I think theres nothing missing in comparison to the de Gamefile
  4. I if remember right mainline_release is pretty unstable. Im pretty fine with mainline and novaline works aswell as a friend of mine uses it. Theres just one little IG Exploit to fix in novaline so i prefer using mainline
  5. Like i said above try Incloudbly. But they have very high prices for their excellent service.
  6. No he was right 1 Bow 2 Staff (evolution of bell) 3 Sword 4 Fan 5 Dagger 6 Two handed
  7. I've been as Developer on a Server. First we tried SafeWare as one of the first customers.. at revealed as real crap cause the servers shut down on the first sign of (D)DoS Then we switched to Incloubly. They had a really nice protection.. If i can trust the statistics we saw we had an Attack of 70 - spikes of 100 Gbit/s incoming and they did manage to block it
  8. Thx for this tutorial The problem with windows 8 can be solved by using the newest version of enigma
  9. File Name: Weaponset by .InyaProduction File Submitter: .InyaProduction File Submitted: 05 Feb 2014 File Category: 3d Models Click here to download this file
  10. I really love this music heard all of your songs now and theyre prette awesome
  11. Yes it is able on 64 but just with a 32bit jail. Not on 64bit native system cause its 32bit libs
  12. Here you can discuss about the source and help each other to modify/compile it aswell as asking questions about it
  13. Isnt it for item proto and mob proto?
  14. I think there should be some LoL players within you So lets begin the talk. Ever played the new yasuo? Any meanings about him?
  15. M2 Download Center Download Here ( Internal ) Enjoy it :3 [Hidden Content] I think im going to make a tutorial on importing and exporting soon
  16. Thx for fixing the file #approved again
  17. Youre giving me a nice idea right now. Could someone of the 3d modellers please make a Boxing glove?
  18. I dont know yet. Its still a bit unstable^^
  19. About 5% of the internet users still use an IE with version 8 or below...
  20. Doesnt the gamecore have some bugs with 5.5 and higher?
  21. Its the same like armor over armor And the hardest part were that the way your character is holding your weapon is adjusted by the subtype. Some subtypes were placed by head and armor.. so i had to search a solution for it
  22. Hey as requested in the discussions section im gonna make a little beginners quest tutorial. If you see something wrong just correct me by posting below. Also you can extend my tutorial. I hope at last we get a little "book" of tutorials from different users. Lets begin. Im gonna mark every user editable variable like this: <variable> The first statement that has to be in every quest is following (lua works with "end" so we have to close almost everything with "end" like below) quest <questname> begin end Now for the beginning lets add the first state. A state is something like a chapter. The first state is always the state start. Like quest end it with an "end" quest <questname> begin state start begin end end Now we can start adding events.Possible actions (+ description): kill -gets triggered everytime you kill a monster or another player. party_kill -gets triggered everytime you or a party member kills a monster or another player. enter (you can use "letter" here aswell) -at changing into the state (explanation later) leave -at changing out of the state <mobvnum>.chat."<message>" -On clicking on the npc <mobvnum> and then choosing the <message> in the appearing questwindow <mobvnum>.click -On clicking on the npc <mobvnum> unmount -on unmounting your horse info or button(should be used together) -on clicking on a quest scroll login -on logging in logout or disconnect (should be used together) -on logging out take -on pulling an item on a npc Lets do the first example with a loginmessage. The event has following syntax: quest loginquest begin state start begin when login begin chat("You logged in") end end end So in this case the "when login begin" gets triggered when the user logs in.The "chat()" is a basic quest command in will show the user a white line in the public chat at the bottom of his game like if somebody writes something to the chat. Now you know the basic quest syntax. To limit then when actions there is another helper. The "with" tag. Lets say you want to get the message only if youre above level 25 when login with pc.get_level() > 25 begin chat("You logged in with level above 25") end I just didnt write that whole "quest" and "state" stuff now i think you know how i should look like now. In this case the "with pc.get_level() > 25" checks if you login with your level over 25. The load of function like pc.get_level() and chat() that you got is just remembering and looking for them. There are some public lists of it. Most of them are self explaining by their name. pc allways (except some really special cases you shouldnt get unless you try advanced questing) means your own character Now lets say you got a boss mob at mobvnum 90001 and you want all players to be noticed that a heroic player killed this one. You know the kill trigger but you dont know how to limit it to one mob only. But you also know the "with" tag now. So lets go ahead. The command you need here is npc.get_race(). the "npc" always means the mob you killed, clicked or used an item with right now. The get_race gives you his vnum when kill with npc.get_race() == 90001 begin notice(pc.get_name().." was a heroic player and killed the boss") end I think you should all know what pc.get_name() returns right now but whats the two dots there?It does link functions with strings. So lets say you called "Quester" then the quest sees this: notice(pc.get_name().." was a heroic player and killed the boss") as this: notice("Quester was a heroic player and killed the boss") For the next im gonna show you how to make this little grey popup with text in it like the most quests have. Lets say you want to have a little smalltalk with the old woman (9006). You go to her and ask her about her real name. 9006.chat."What's your real name?" will automaticly generate the option when you click at her. when 9006.chat."What's your real name?" begin say_title("Old woman:") say("Oh hey "..pc.get_name()) say("You want to know my real name") say("Its Dave and apperently I'm an old man") say("But i have something for you") pc.give_item2(72702, 1) say_reward("You got speed shoes") end Below the last line of text there will be an automaticly generated "OK" buttonIf you want the text to be on more than one page add a "wait()" where you want to begin the next page. But then you have to make a new say_title() aswell. As you see im teaching you the basic commands while showing you the syntax. In this case its pc.give_item2(<itemvnum>, <itemcount>) (pc.give_item() is deprecated) So as last lection for this thread the if statements. Lets say you get 10 yang if youre under lvl 20 and 20 yang if youre above or equal when 9006.chat."Money?" begin if pc.get_level() >= 20 then pc.change_money(20) else pc.change_money(10) end end the if structure is pretty easy and should be understood by you. If not let me know. Ok enough for the first part. I would be happy to see other people continue with a second part Greets Inya
  23. M2 Download Center Download Here ( Internal ) Easterquest: Story: 1. - Getting back the basket of some desert bandits (low drop chance, non-tradeable, now you can drop easter eggs) 2. - Dropping easter eggs at every mob for a chance you can edit as GM (easter_event_gm.quest) chance 1 to [your setting] 3. - Dropping easter eggs at easter metins (1 easter egg with a high chance) 4. - Eggs openable like a boss box with small rewards 5. - 20 Eggs together with the basket -> full basket = like a boss box with higher rewards (in my case easter costumes and IS stuff) Download: [Hidden Content]
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.