[RELEASE] My server files

Page 14 of 18 FirstFirst ... 46789101112131415161718 LastLast
Results 196 to 210 of 267
  1. #196
    Valued Member xEnt is offline
    MemberRank
    Nov 2006 Join Date
    100Posts

    Re: [RELEASE] My server files

    Ultimation and Korvacs are right. I simply said NPC's are not coding. Yes you will need to hardcode some sort of methods, for example a quest npc, that would need to be hardcoded, or parsed from txt that runs a method which does it. NPCs (monsters that you kill) is definitively not coding.

    There is little script-like engines people make, that are written and parsed from txt according to how it was written and loaded in the language its self.

    But i was referring to James as he always talks about how he "coded" npcs when im guessing it was just some txt spawns.

    Fsockopen is also correct, an npc that needs to calculate player values + some luck (tc artisan for example) would usually a Boolean formula. But even that NPC wouldent be running the thread for updating that. Clicking him would hand it over to UpgradeWindow handler.

    If it was a script-engine for example

    Npc333
    START=ShowUpgradeWindow();

    Or something like that, youd be limited to what you can use, and wouldent even understand how the methods work behind it, ur simply telling something to run something that you have to use. The script-engine designer would be the "coder" and the person doing the .txt would be more of a scripter.

    Even a script-engine with very C#-like syntax would be very limited to what it can do, it wouldn't be able to use constructors, keywords, library, would not be able to communicate with any of the classes unless it was a very advanced script-engine which i don't see the point of even making because if you need to use things like constructors/keywords and other library then you might as well just code in C# and do it in a class.

    Sorry if i didn't explain that well, but most people should understand.

  2. #197
    Account Upgraded | Title Enabled! Ultimatum is offline
    MemberRank
    Feb 2008 Join Date
    EnglandLocation
    334Posts

    Re: [RELEASE] My server files

    Quote Originally Posted by xEnt View Post
    Ultimation and Korvacs are right. I simply said NPC's are not coding. Yes you will need to hardcode some sort of methods, for example a quest npc, that would need to be hardcoded, or parsed from txt that runs a method which does it. NPCs (monsters that you kill) is definitively not coding.

    There is little script-like engines people make, that are written and parsed from txt according to how it was written and loaded in the language its self.

    But i was referring to James as he always talks about how he "coded" npcs when im guessing it was just some txt spawns.

    Fsockopen is also correct, an npc that needs to calculate player values + some luck (tc artisan for example) would usually a Boolean formula. But even that NPC wouldent be running the thread for updating that. Clicking him would hand it over to UpgradeWindow handler.

    If it was a script-engine for example

    Npc333
    START=ShowUpgradeWindow();

    Or something like that, youd be limited to what you can use, and wouldent even understand how the methods work behind it, ur simply telling something to run something that you have to use. The script-engine designer would be the "coder" and the person doing the .txt would be more of a scripter.

    Even a script-engine with very C#-like syntax would be very limited to what it can do, it wouldn't be able to use constructors, keywords, library, would not be able to communicate with any of the classes unless it was a very advanced script-engine which i don't see the point of even making because if you need to use things like constructors/keywords and other library then you might as well just code in C# and do it in a class.

    Sorry if i didn't explain that well, but most people should understand.
    Basically scripting npcs is'nt indepth coding XEnt is saying. Same with what xEnt says with the script engine. It would be limited to what it can script, it would'nt be able to do the methods for you. A basic/default npc is the txt, the id and a couple of if's else's. I doubt anyone wouldnt be able to understand your comment lol.

  3. #198
    Account Upgraded | Title Enabled! Ne[o]x is offline
    MemberRank
    Apr 2008 Join Date
    Romania | Baia MareLocation
    235Posts

    Re: [RELEASE] My server files

    hey i want to ask about spawning,how can i spwan mob's???or if you have the file with mob's spawned please put it here. hehe my server want mob's :D




    My server:
    ShadowCO

  4. #199
    Apprentice fsockopen is offline
    MemberRank
    Jun 2008 Join Date
    12Posts

    Re: [RELEASE] My server files

    Even a script-engine with very C#-like syntax would be very limited to what it can do, it wouldn't be able to use constructors, keywords, library, would not be able to communicate with any of the classes unless it was a very advanced script-engine which i don't see the point of even making because if you need to use things like constructors/keywords and other library then you might as well just code in C# and do it in a class.
    what ive noticed is seeing i've been exploring 'everything' microsoft provides two intresting namespaces for building engines to compile code, system.reflection and microsoft.*, i haven't really experimented with either yet

    hah werent u the person asking for C# lessons? haha sounds like u learned pretty fast, congrats
    i haven't learned what i'd call alot, but like i said i can understand things easily; i use to play to real conquer and i was able to figure out the mathamatics of how things were being done, i probably can't code them though

  5. #200
    Account Upgraded | Title Enabled! hadeset is offline
    MemberRank
    Dec 2006 Join Date
    240Posts

    Re: [RELEASE] My server files

    Could you post me the m-atk calculation formula depending on m-def? :P
    I would really be happy. =)

  6. #201
    Valued Member xEnt is offline
    MemberRank
    Nov 2006 Join Date
    100Posts

    Re: [RELEASE] My server files

    fsockopen you seem really dedicated to learning, and ill give you a chance if you would like me to teach you some C#/Java because getting to where i am now, was taught from a great friend who just offered to help me out one time.

    Pm me your msn if your interested.

  7. #202
    Account Upgraded | Title Enabled! Ne[o]x is offline
    MemberRank
    Apr 2008 Join Date
    Romania | Baia MareLocation
    235Posts

    Re: [RELEASE] My server files

    nothing about spawning??

  8. #203
    Account Upgraded | Title Enabled! james1992_2006 is offline
    MemberRank
    Aug 2006 Join Date
    illlinoisLocation
    427Posts

    Re: [RELEASE] My server files

    Quote Originally Posted by xEnt View Post
    Ultimation and Korvacs are right. I simply said NPC's are not coding. Yes you will need to hardcode some sort of methods, for example a quest npc, that would need to be hardcoded, or parsed from txt that runs a method which does it. NPCs (monsters that you kill) is definitively not coding.

    There is little script-like engines people make, that are written and parsed from txt according to how it was written and loaded in the language its self.

    But i was referring to James as he always talks about how he "coded" npcs when im guessing it was just some txt spawns.

    Fsockopen is also correct, an npc that needs to calculate player values + some luck (tc artisan for example) would usually a Boolean formula. But even that NPC wouldent be running the thread for updating that. Clicking him would hand it over to UpgradeWindow handler.

    If it was a script-engine for example

    Npc333
    START=ShowUpgradeWindow();

    Or something like that, youd be limited to what you can use, and wouldent even understand how the methods work behind it, ur simply telling something to run something that you have to use. The script-engine designer would be the "coder" and the person doing the .txt would be more of a scripter.

    Even a script-engine with very C#-like syntax would be very limited to what it can do, it wouldn't be able to use constructors, keywords, library, would not be able to communicate with any of the classes unless it was a very advanced script-engine which i don't see the point of even making because if you need to use things like constructors/keywords and other library then you might as well just code in C# and do it in a class.

    Sorry if i didn't explain that well, but most people should understand.
    i wasnt talking about npc spawns or monsters spawns moron also ive coded alot more then that now <_<

    i maybe not pro like inf/korvacs/etc but i still can code lol

    anywayz as for what korvacs said he said it comes down to what source ure using meaning coding the little If (NpcId == 1) NpcLink.xxx shit is coding its just RLLY simple and like i said thats over a yr ago and if ure gonna continue a pointless argument over the internet i aint even gonna reply anymore becuz its simply POINTLESS + i could careless what u think lol

  9. #204
    Valued Member xEnt is offline
    MemberRank
    Nov 2006 Join Date
    100Posts

    Re: [RELEASE] My server files

    I'm not arguing i am just saying that what your doing is scripting. Coding would be making the NpcLink.xxx part, ur just using whats there to use e.g scripting.

  10. #205
    Apprentice fsockopen is offline
    MemberRank
    Jun 2008 Join Date
    12Posts

    Re: [RELEASE] My server files

    scripting - when something is interperated
    coding - when something is compiled to a binary to be interperated

    a simple if statment or variable assingment coded inside the .exe is coding no matter how little because it was compiled to a binary and then interperatd by the .net framework or whatever

  11. #206
    Account Upgraded | Title Enabled! james1992_2006 is offline
    MemberRank
    Aug 2006 Join Date
    illlinoisLocation
    427Posts

    Re: [RELEASE] My server files

    Quote Originally Posted by fsockopen View Post
    scripting - when something is interperated
    coding - when something is compiled to a binary to be interperated

    a simple if statment or variable assingment coded inside the .exe is coding no matter how little because it was compiled to a binary and then interperatd by the .net framework or whatever
    ahh yes thats wat ive been trying 2 tell him or her the whole time but for some reason they aint smart enough 2 understand that but maybe now they will alltho i highly doubt it becuz whoever it seems like an idiot :P

  12. #207
    Frozen LegendX is offline
    MemberRank
    Aug 2006 Join Date
    homeLocation
    205Posts

    Re: [RELEASE] My server files

    can anyone help me get stamina to work on this source xD

  13. #208
    Account Upgraded | Title Enabled! Ne[o]x is offline
    MemberRank
    Apr 2008 Join Date
    Romania | Baia MareLocation
    235Posts

    Re: [RELEASE] My server files

    Quote Originally Posted by LegendX View Post
    can anyone help me get stamina to work on this source xD
    ya i want to know this too :)

    about spawning.. i found how to spawn mob's thnx for nothing xD

  14. #209
    Account Upgraded | Title Enabled! Ultimatum is offline
    MemberRank
    Feb 2008 Join Date
    EnglandLocation
    334Posts

    Re: [RELEASE] My server files

    Put a timer on the action packet sit like foreach second you sit the stamina goes up by 20 or something.

  15. #210
    Valued Member zilvis89 is offline
    MemberRank
    Jun 2006 Join Date
    LondonLocation
    138Posts

    Re: [RELEASE] My server files

    hey can anyone tell me why when i do everything good i enter IP i tried with my IP and with hamachi IP and with Local IP when i write ID , PW it says connection with the server interrupted?


    srry for my bad english



Advertisement