EOSERV Forum > EOSERV > insoms rev
Topic is locked.
Page: << 1 2 ... 9 10 11 12 13 14 15 >>
insoms rev
Author Message
Post #71960 Re: insoms rev
Whitewolf posted: (3rd Apr 2011 04:41 am)

Click me Insomniac

The purpose of this is specifically for Insom, no one else. Please ignore it.

Find Map::AttackPKSpell and replace the function with this
REPOST USE THIS and replace your whole map.cpp
14 years, 5 weeks ago
Post #71976 Re: insoms rev
insomniac posted: (3rd Apr 2011 04:50 am)

Whitewolf posted: (3rd Apr 2011 04:41 am)

Click me Insomniac

The purpose of this is specifically for Insom, no one else. Please ignore it.

Find Map::AttackPKSpell and replace the function with this
REPOST USE THIS and replace your whole map.cpp

Got it to work by taking this code out lol Is it needed?


void Map::TMessage()
{
int rand = util::rand(1, 100);

           if(rand < 20) //1% chance say first message
           {
            this->world->ServerMsg(static_cast<std::string>(this->world->mapmes_config[util::to_string(this->id) + ".1"]));
           }
           else if(rand >= 20 && rand < 40) //1% chance change message
           {
               this->world->ServerMsg(static_cast<std::string>(this->world->mapmes_config[util::to_string(this->id) + ".2"]));
           }
           else if(rand >= 40 && rand < 60) // 1% chance say 3rd
           {
               this->world->ServerMsg(static_cast<std::string>(this->world->mapmes_config[util::to_string(this->id) + ".3"]));
           }
           else if(rand >= 60 && rand < 80) // 1% chance say 3rd
           {
               this->world->ServerMsg(static_cast<std::string>(this->world->mapmes_config[util::to_string(this->id) + ".4"]));
           }
           else if(rand >= 80 && rand <= 100) // 1% chance say 3rd
           {
               this->world->ServerMsg(static_cast<std::string>(this->world->mapmes_config[util::to_string(this->id) + ".5"]));
           }
}
14 years, 5 weeks ago
Post #72070 Re: insoms rev

-- 04/03/11 10:15:59 ---


[WRN] Configuration file not found: ./data/harvs.ini

my only WARNING!
and server crashes 
it says blah blah sorry for the inconvenice blah blah...
14 years, 5 weeks ago
Post #72092 Re: insoms rev
Hollisterâ„¢ posted: (3rd Apr 2011 05:17 pm)

-- 04/03/11 10:15:59 ---


[WRN] Configuration file not found: ./data/harvs.ini

my only WARNING!
and server crashes 
it says blah blah sorry for the inconvenice blah blah...

Click Me - This is the harvesting ini file, place it in your data folder.
14 years, 5 weeks ago
Post #72125 Re: insoms rev
Whitewolf posted: (3rd Apr 2011 07:14 am)

insomniac posted: (3rd Apr 2011 04:50 am)

Whitewolf posted: (3rd Apr 2011 04:41 am)

Click me Insomniac

The purpose of this is specifically for Insom, no one else. Please ignore it.

Find Map::AttackPKSpell and replace the function with this
REPOST USE THIS and replace your whole map.cpp

Got it to work by taking this code out lol Is it needed?


void Map::TMessage()
{
int rand = util::rand(1, 100);

           if(rand < 20) //1% chance say first message
           {
            this->world->ServerMsg(static_cast<std::string>(this->world->mapmes_config[util::to_string(this->id) + ".1"]));
           }
           else if(rand >= 20 && rand < 40) //1% chance change message
           {
               this->world->ServerMsg(static_cast<std::string>(this->world->mapmes_config[util::to_string(this->id) + ".2"]));
           }
           else if(rand >= 40 && rand < 60) // 1% chance say 3rd
           {
               this->world->ServerMsg(static_cast<std::string>(this->world->mapmes_config[util::to_string(this->id) + ".3"]));
           }
           else if(rand >= 60 && rand < 80) // 1% chance say 3rd
           {
               this->world->ServerMsg(static_cast<std::string>(this->world->mapmes_config[util::to_string(this->id) + ".4"]));
           }
           else if(rand >= 80 && rand <= 100) // 1% chance say 3rd
           {
               this->world->ServerMsg(static_cast<std::string>(this->world->mapmes_config[util::to_string(this->id) + ".5"]));
           }
}

No new feature im working on
14 years, 4 weeks ago
Post #72148 Re: insoms rev

I connect to my sqlyog

and i try to create a character and the server crashes...

but theres blank error that pops up.

14 years, 4 weeks ago
Post #72155 Re: insoms rev
Hollisterâ„¢ posted: (3rd Apr 2011 10:42 pm)

I connect to my sqlyog

and i try to create a character and the server crashes...

but theres blank error that pops up.


Idk dude do you have odbc?
14 years, 4 weeks ago
Post #72162 Re: insoms rev

Whats that?

EDIT: also the insoms.sql file always gets an error with SQLyog and HeidiSQL!

14 years, 4 weeks ago
Post #72357 Re: insoms rev
insomniac posted: (3rd Apr 2011 09:08 pm)

Whitewolf posted: (3rd Apr 2011 07:14 am)

insomniac posted: (3rd Apr 2011 04:50 am)

Whitewolf posted: (3rd Apr 2011 04:41 am)

Click me Insomniac

The purpose of this is specifically for Insom, no one else. Please ignore it.

Find Map::AttackPKSpell and replace the function with this
REPOST USE THIS and replace your whole map.cpp

Got it to work by taking this code out lol Is it needed?


void Map::TMessage()
{
int rand = util::rand(1, 100);

           if(rand < 20) //1% chance say first message
           {
            this->world->ServerMsg(static_cast<std::string>(this->world->mapmes_config[util::to_string(this->id) + ".1"]));
           }
           else if(rand >= 20 && rand < 40) //1% chance change message
           {
               this->world->ServerMsg(static_cast<std::string>(this->world->mapmes_config[util::to_string(this->id) + ".2"]));
           }
           else if(rand >= 40 && rand < 60) // 1% chance say 3rd
           {
               this->world->ServerMsg(static_cast<std::string>(this->world->mapmes_config[util::to_string(this->id) + ".3"]));
           }
           else if(rand >= 60 && rand < 80) // 1% chance say 3rd
           {
               this->world->ServerMsg(static_cast<std::string>(this->world->mapmes_config[util::to_string(this->id) + ".4"]));
           }
           else if(rand >= 80 && rand <= 100) // 1% chance say 3rd
           {
               this->world->ServerMsg(static_cast<std::string>(this->world->mapmes_config[util::to_string(this->id) + ".5"]));
           }
}

No new feature im working on

REPOST - Click me
14 years, 4 weeks ago
Post #72358 Re: insoms rev

You guys should release a finshed Rev!

Meaning a final version

14 years, 4 weeks ago
Post #72376 Re: insoms rev

He had a post earlier saying he's done releasing his work. He posted it on the first. Basically if you can't get it to work that's the end of it. I didn't have any trouble starting it up.

14 years, 4 weeks ago
Post #72379 Re: insoms rev
Whitewolf posted: (5th Apr 2011 03:03 am)

He had a post earlier saying he's done releasing his work. He posted it on the first. Basically if you can't get it to work that's the end of it. I didn't have any trouble starting it up.

Sorry for the quote im just posting the working warp should work

14 years, 4 weeks ago
Post #72380 Re: insoms rev
insomniac posted: (5th Apr 2011 03:14 am)

Whitewolf posted: (5th Apr 2011 03:03 am)

He had a post earlier saying he's done releasing his work. He posted it on the first. Basically if you can't get it to work that's the end of it. I didn't have any trouble starting it up.

Sorry for the quote im just posting the working warp should work

Thanks again bro. Heres the item.cpp

14 years, 4 weeks ago
Post #72573 Re: insoms rev
insomniac
I'm still having trouble with it, can you please help me?
14 years, 4 weeks ago
Post #72625 Re: insoms rev

will u post the rev with all the .inis for all the features?

14 years, 4 weeks ago
Page: << 1 2 ... 9 10 11 12 13 14 15 >>
Topic is locked.
EOSERV Forum > EOSERV > insoms rev