RoseOnline SVN Source[Revision 89]

Page 32 of 36 FirstFirst ... 2224252627282930313233343536 LastLast
Results 776 to 800 of 881
  1. #776
    Enthusiast Jozyx is offline
    MemberRank
    Sep 2006 Join Date
    44Posts

    hmm

    I noticed there is a memory leak in the newest version, any one know what it is ?

  2. #777
    ShinROSE Owner Tohma is offline
    MemberRank
    Sep 2006 Join Date
    270Posts
    Hey Arnie SVN is really dead? nobody or no new dev will work on it again?

  3. #778
    ShinROSE Owner Tohma is offline
    MemberRank
    Sep 2006 Join Date
    270Posts
    Okay i know that already but i'm just asked to be sure thanks u^^

  4. #779
    Account Upgraded | Title Enabled! rl2171 is offline
    MemberRank
    Aug 2006 Join Date
    USALocation
    659Posts
    Quote Originally Posted by Arnie36 View Post
    at the moment i spend alot of time on an Irose version.
    if the updates i make in that version are easely converted to evo i wil

    Is the iRose version on SVN as well, or just the EVO version?

  5. #780
    Valued Member SirSmashalot is offline
    MemberRank
    Oct 2006 Join Date
    105Posts
    hey guys, i've been testing around and i think i found the problem with people that keep missing mobs, here's what i tested :

    first test : find a mob far away and go attack it by clicking on the mob, most of the time this will result in mob running towards you and somewhere in middle you meet up and attack each other which usually results in missing a lot and then you start hitting and mob dies

    second test : find another mob far away and go stand right next to it and the second you're next to it attack it and you'll see you'll miss far less than in first test

    if you all have same results as i have you'll come to conclusion thats there's something wrong with position/coordinates of you and the mob, you can also see that from first test the item drops will end up on the spot where you started running towards the mob....too bad i dont know how to change all this because i havent coded anything in c++ in a while and then i only learned the basics

  6. #781
    Apprentice brokenshadows is offline
    MemberRank
    Nov 2006 Join Date
    6Posts
    interestingly enough, when my wife and I play on a friends server (I'm still very new and neck deep in code I don't understand, so mine isn't functioning right now) I've noticed that we can be attacking the same creature but in different places on the map. For example, on my screen is shows us both on the bridge of the boat in adventure plains attacking a creature, but on her screen on a different computer in the same room it shows us both attacking the same creature in the sand on the beach near the boat... granted it's not too far away from where we are on my screen, but there's shouldn't be any difference between them.

    I know I'm not posting a fix, but I'm hoping that my additional tidbit of information might help narrow down the issue...or at least rule out part of it...

  7. #782
    Account Upgraded | Title Enabled! knight66 is offline
    MemberRank
    Jan 2005 Join Date
    My HouseLocation
    285Posts
    whats new on rev 86???

  8. #783
    ShinROSE Owner Tohma is offline
    MemberRank
    Sep 2006 Join Date
    270Posts
    Check the journal lol

    any new about skills? We can't use the wolrd(extra) because is instable and we don't know how to build the skills. If any one can post a skill build model maybe we can fix it and and other own fix.

    [EDIT] No difference with rev86 only /ann fixed i have already fix that on my server and a few other thing too -__-
    Last edited by Tohma; 20-11-06 at 10:06 PM.

  9. #784
    Account Upgraded | Title Enabled! rl2171 is offline
    MemberRank
    Aug 2006 Join Date
    USALocation
    659Posts
    Quote Originally Posted by Tohma View Post
    Check the journal lol

    any new about skills? We can't use the wolrd(extra) because is instable and we don't know how to build the skills. If any one can post a skill build model maybe we can fix it and and other own fix.

    I posted builds for most all of the builds quite sometime ago. My son and I researched it all and with the exception of one of the 2nd jobs, all of them work real well.

    Have you seen this:

    Knight (121) - class_Skills

    201,211,251,221,261,231,241,236,311,271,281,291,301,306,426,431,441,461,481,496,491,451,506,516,721,726,731,421,416,501,0,0,0,0,0,0,0,0,0,0

    Knight - Class_Skills_Level

    9,9,9,9,9,4,3,3,3,9,9,9,3,2,9,2,9,9,1,9,9,9,9,18,9,9,3,3,3,3,2,1,1,1,1,1,1,1,1,1


    This is just one of the ones I posted back in October.

    Rob

  10. #785
    ShinROSE Owner Tohma is offline
    MemberRank
    Sep 2006 Join Date
    270Posts
    OMG i don't talk about that lol i talk about build skill lines on the sources

  11. #786
    Account Upgraded | Title Enabled! rl2171 is offline
    MemberRank
    Aug 2006 Join Date
    USALocation
    659Posts
    Quote Originally Posted by Tohma View Post
    OMG i don't talk about that lol i talk about build skill lines on the sources

    I guess I am at a loss on what you are doing then.

    Sorry about that!

  12. #787
    ShinROSE Owner Tohma is offline
    MemberRank
    Sep 2006 Join Date
    270Posts
    I have to learn english before C++ xDDD

  13. #788
    Valued Member SirSmashalot is offline
    MemberRank
    Oct 2006 Join Date
    105Posts
    meh, this is what i tried to make IncreaseSkillLvl function :
    Code:
    // -----------------------------------------------------------------------------
    // Increase skill lvl
    // -----------------------------------------------------------------------------
    bool CWorldServer::pakIncreaseSkillLvl(CWorldClient* thisclient, CPacket* P)
    {
    	char skillid = GETBYTE((*P), 0);
    	char skillval = thisclient->cskills[skillid].level;
    	
    	// increasing skills
    
    	skillval += 1;
    	thisclient->cskills[skillid].level += 1;
    
    	// returning skill info to client
    
    	BEGINPACKET( pak, 0x7b1 );
    	ADDWORD( pak, skillid+thisclient->cskills[skillid].level-1 );	
    	thisclient->SendPacket( &pak );
    	
    	return true;
    }
    but it doesnt work :(
    when returning that packet it comes up saying stuff like "not right lvl " or "dont have needed skills" stuff like that so i'm guessing there's more in that packet that i know of
    one thing i'm sure of is that the first byte is the skillid and ranges between 0 and 40

    oh yeah, another thing i noticed, learning a new skill doesnt send packet 7b1

    ps :
    yes i'm rather new to packet coding lol
    Last edited by SirSmashalot; 21-11-06 at 01:55 PM.

  14. #789
    Member bgondron is offline
    MemberRank
    Nov 2005 Join Date
    GM LandLocation
    73Posts

    grrr

    damnit I can't compile the *^^* for nothing in the world
    too many damn errs

  15. #790
    Valued Member SirSmashalot is offline
    MemberRank
    Oct 2006 Join Date
    105Posts
    well dont try compiling what i posted, was a first test of having IncreaseSkillLvl, somebody wanted to get a start to try fixing so i posted what i came up with :o

  16. #791
    Member hendrigo is offline
    MemberRank
    May 2006 Join Date
    BrasilLocation
    65Posts
    I need ver 1.0.0.0

  17. #792
    Member hendrigo is offline
    MemberRank
    May 2006 Join Date
    BrasilLocation
    65Posts
    And I need Site to download server

  18. #793
    Member bgondron is offline
    MemberRank
    Nov 2005 Join Date
    GM LandLocation
    73Posts
    Quote Originally Posted by SirSmashalot View Post
    well dont try compiling what i posted, was a first test of having IncreaseSkillLvl, somebody wanted to get a start to try fixing so i posted what i came up with :o
    sorry bout that I posted in the wrong section this wasn't towards you at all sir

  19. #794
    Novice hittokiri1859 is offline
    MemberRank
    Nov 2006 Join Date
    2Posts
    With the newest revision seems theres a problem it seem to crash every so often and only error I get on world server is unknown packet any idea's what might be going wrong with it?

  20. #795
    Account Upgraded | Title Enabled! The nGage is offline
    MemberRank
    Oct 2006 Join Date
    Where do you think?Location
    389Posts
    ...unknown packet ...
    There's nothing wrong with that 'unknown packet' -.-. It is no 'error'
    The action (package)you are doing isn't working yet

  21. #796
    Novice daisyanne is offline
    MemberRank
    Nov 2006 Join Date
    2Posts
    hmm im getting same problem i seem to crash when walking or pick up item...but thats not so bad as my other problem...


    when im walking or just standing still i lose hp rapidly for no reason not even being hit..... sometimes i just die over and over cause i keep losing hp.... they i stand still and im watching my hp bar and MP bar just go up and down for no reason ?

    also when i hit tab it doesnt change the speed of the char at all. i think its supposed to run.


    any one know why this happen?
    Last edited by daisyanne; 22-11-06 at 05:49 PM.

  22. #797
    Novice Meruru is offline
    MemberRank
    May 2006 Join Date
    4Posts
    So quick question here. Who is dev for this thing and are they still doing it? If not my friends are trying to start a server and im going to start correcting errors and if no one is deving ill just make my svn public. But id like to know if this one is done <_<

  23. #798
    Novice Meruru is offline
    MemberRank
    May 2006 Join Date
    4Posts
    Quote Originally Posted by Arnie36 View Post
    i answered that question a cople of days ago.
    if you want you can ask zad67 for a username and password so you can post your own updates and fixxes
    Hey thanks and sorry for the redundant questions but come on man 30 some pages XD... Anyway the question is does he still dev on it or just manage it? Anyway ill sent him a PM thanks agan.

  24. #799
    Apprentice Dotoro is offline
    MemberRank
    Aug 2006 Join Date
    1Location
    11Posts
    mmm i seen jornal and where can i find the latest compiled version (87)
    ??

  25. #800
    Valued Member SirSmashalot is offline
    MemberRank
    Oct 2006 Join Date
    105Posts
    damnit i cant get the increase skill to work, i only managed to figure out one part of the packet being sent :(



Advertisement