|
|
Joined: Sep 2005
Posts: 44
Ameglian cow
|
OP
Ameglian cow
Joined: Sep 2005
Posts: 44 |
I'm not sure if this is where to post the question but if its not then im sorry.
I'm just wondering if there ANY way to like, compile a application you make in mirc into a single .EXE so people cannot ge the source ? or anyway to use a C++ Compiler and put it in or something? i have no idea but it would be cool.
Reece.
|
|
|
|
Joined: Jun 2003
Posts: 5,024
Hoopy frood
|
Hoopy frood
Joined: Jun 2003
Posts: 5,024 |
It would not be cool. Hiding code from people is a bad thing. You cannot prevent people from accessing/seeing/editing/ripping the code they have loaded into mIRC. If you don't want to run the relatively small risk of having your code ripped then don't distribute your work. There is no reason for you to not want people to edit your script for their own needs.
Regards,
Mentality/Chris
|
|
|
|
Joined: Sep 2005
Posts: 44
Ameglian cow
|
OP
Ameglian cow
Joined: Sep 2005
Posts: 44 |
It's that that i dont want people to edit script, well in an online game you dont want then to edit script or try to cheat do you.
thats what i mean, if it isnt a game i dont care what they do, but in a game i wouldnt want to to try to cheat and edit the script to manipulate gameplay.
like the mIRC pal that someone released is awsome and thats .exe, was that made in Mirc or was it done in a different langauge?
|
|
|
|
Joined: Apr 2004
Posts: 759
Hoopy frood
|
Hoopy frood
Joined: Apr 2004
Posts: 759 |
if its an exe not with mIRC  . in mIRCscripts cheating with mIRCscript programmed games is ALWAYS possible.
$maybe
|
|
|
|
Joined: Sep 2003
Posts: 4,230
Hoopy frood
|
Hoopy frood
Joined: Sep 2003
Posts: 4,230 |
I have read a few of your posts, and i dont want to sound to patronizing, but what programming skills do you have? Becuase the task you are setting yourself is not a small one, and is also not a task you are ever likely to get someone to code for you with a abitary promise of some cash if it makes some money.
|
|
|
|
Joined: Sep 2005
Posts: 44
Ameglian cow
|
OP
Ameglian cow
Joined: Sep 2005
Posts: 44 |
Lol, i dont know alot of it but i do know some, its just bits that baffle me.
Last edited by reece1312; 23/09/05 01:08 PM.
|
|
|
|
Joined: Feb 2005
Posts: 681
Fjord artisan
|
Fjord artisan
Joined: Feb 2005
Posts: 681 |
chr = character
In the gapless code, they're replacing all spaces (32) with the _ (95) character.
In the gaps code, they're probably doing the opposite, replacing the _ (95) characters with spaces (32).
Last edited by mIRCManiac; 23/09/05 02:19 PM.
|
|
|
|
Joined: Jun 2003
Posts: 994
Hoopy frood
|
Hoopy frood
Joined: Jun 2003
Posts: 994 |
from the help file: $chr(N) Returns the character with ascii number N.
$chr(65) returns A $chr(42) returns *
list of characters? /run charmap
I refuse to engage in a battle of wits with an unarmed person.
|
|
|
|
Joined: Oct 2004
Posts: 8,330
Hoopy frood
|
Hoopy frood
Joined: Oct 2004
Posts: 8,330 |
To prevent cheating, you need to set up all important things to run from a server (if you want to be the only one with access to that, then you keep the server on your comp and never let anyone else use it). Note that by server, I am not referring to a IRC server... I'm referring to a game server (i.e. a bot that runs the game).
For example, if you set it so that someone can tell the bot what they want to do, the bot will know what happens and tell them that. It won't help them to change what happens on their end as the bot will know what really happens.
Note that you can also use DLLs for things.
Invision Support #Invision on irc.irchighway.net
|
|
|
|
Joined: Sep 2005
Posts: 44
Ameglian cow
|
OP
Ameglian cow
Joined: Sep 2005
Posts: 44 |
ahh yeh i get it, thanks.
yeh what r good DLLs? and is there anyway i can make a layout in mIRC without haivng to code it? like drag n drop? lol
cuz i dunno how to make buttons and make em do stuff.
|
|
|
|
Joined: Oct 2004
Posts: 8,330
Hoopy frood
|
Hoopy frood
Joined: Oct 2004
Posts: 8,330 |
Dialogs aren't difficult to learn and will do what you need.
As far as good DLLs, it depends what you need them for. Note that when I referred to using DLLs to help with making a game more secure, I do not mean you can go and download one that is already made. You would have to make your own DLL that would do what you needed done.
DLLs that others wrote and released separate from a script are going to be more general and not specific in nature. For example, MDX and hOS DLLs are useful for changing dialogs (among other things). That won't help you with making a specific game more secure. There aren't any that are premade that will work for every game someone could choose to make.
Invision Support #Invision on irc.irchighway.net
|
|
|
|
|
|