• This is a read only backup of the old Emudevs forum. If you want to have anything removed, please message me on Discord: KittyKaev

Free coding service

Unholyzz

Enthusiast
Hey everyone!
I'm here to offer a free coding service, which means that I take requests.

I'm currently learning C++, so I'm not the best, but I would like to learn more, and I think it could be a good way with this kind of service.
So hit me up if you have any work you need to have done.

//Unholyzz
 

pinkyflip

Banned
What exactly do you mean by "FREE" coding service? i wouldn't say that on here.... id say you are looking for some cool ideas for a project to work on or something or ppl will be flooding you with requests.

Just a suggestion :welcome:
 

Unholyzz

Enthusiast
What exactly do you mean by "FREE" coding service? i wouldn't say that on here.... id say you are looking for some cool ideas for a project to work on or something or ppl will be flooding you with requests.

Just a suggestion :welcome:

I spoke with Faded, and asked if I could do a free coding service on here, and he said yes.
 

Tommy

Founder
What exactly do you mean by "FREE" coding service? i wouldn't say that on here.... id say you are looking for some cool ideas for a project to work on or something or ppl will be flooding you with requests.

Just a suggestion :welcome:

Makes no sense, honestly. He's doing a coding service for people, not trying to get ideas for a project. I think everyone is aware that they might be flooded with requests and that's a good thing.

I spoke with Faded, and asked if I could do a free coding service on here, and he said yes.

He isn't saying that this thread isn't allowed here on ED. :p

Let's stay on topic. If you aren't going to request, don't post.
 

Unholyzz

Enthusiast
Makes no sense, honestly. He's doing a coding service for people, not trying to get ideas for a project. I think everyone is aware that they might be flooded with requests and that's a good thing.



He isn't saying that this thread isn't allowed here on ED. :p

Let's stay on topic. If you aren't going to request, don't post.

Yeah, let's stay on topic.

- - - Updated - - -

Online now and taking requests!
 

Ladd

Epic Member
Not sure if you're still doing this, but I'm looking for a script that will distribute 50 arena points per arena win, and make flushes basically obsolete in 3.3.5a. (basically the Cata Arena system in WoTLK)
 

Unknown96

Exalted Member
I have a request for you, its probably very simple but I myself have no clue how to do it so here it is.

I want this the following GM Ranks to be displayed in /who <Vip>, <Moderator>, <GM>, <Admin>

I currently have <GM> added for all players that have a GM Rank but I want this changed according to my request.

Here is the current code (note its found in MiscHandler.cpp)

Code:
if (itr->second->HasFlag(PLAYER_FLAGS, PLAYER_FLAGS_DEVELOPER))
{
pname = "|cffff0000<Dev>|r";
pname.append(itr->second->GetName());
}
else
if (itr->second->IsGameMaster())
{
pname = "|cffff0000<GM>|r";
pname.append(itr->second->GetName());
}
else
pname = itr->second->GetName();
std::wstring wpname;

This is the ranks I have added and its SEC value (I think that can be helpful to you to know.

Code:
enum AccountTypes
{
    SEC_PLAYER         = 0,
    SEC_MODERATOR      = 1,
    SEC_GAMEMASTER     = 2,
    SEC_ADMINISTRATOR  = 3,	
    SEC_VIP            = 4,
    SEC_CONSOLE        = 5  	// must be always last in list, accounts must have less security level always also
};
 
Last edited:

Unholyzz

Enthusiast
Hey, sorry for very late reply. I've been very busy with work. Add me on Skype and I'll make it for you :)
- Mathias.norup1337
 

Runic-WoW

Emulation Addict
Hey, sorry for very late reply. I've been very busy with work. Add me on Skype and I'll make it for you :)
- Mathias.norup1337

Added you on skype, I need the same thing a XP Rate Changer for 1x x5 and x7 with the use of the command in-game.
 
Top