ok im not gonna name any names here since im such a nice guy but someone told me how much my game sucks and cusses me out etc etc.i asked him what thing he doesnt like about my game and he said he wants it 3d.i explained to him tthat byond cant handle 3d too well right now and that if i went 3d,id be more of a target for FUNiMation.i think this is highly immature of people to do that and im gonna get stuff like that on a regular bases i bet.this is to point this out and maybe if i am majorly lucky stop this problem.
i also ask of someone to give em a really good IP ban code and a regular key ban code please.for the key ban,i jsut type in the key instead of looking for it.the IP ban can IP Ban anyonbe in the server i guess.you get the idea.but i ask of this since i am not good in making GM Verbs
ID:175492
Apr 16 2003, 12:52 pm
|
|
Apr 16 2003, 1:12 pm
|
|
Okay, I have no clue what you want. Please try speaking English.
|
Partner420 wrote:
ok im not gonna name any names here since im such a nice guy but someone told me how much my game sucks and cusses me out etc etc.i asked him what thing he doesnt like about my game and he said he wants it 3d... At which point you ban them and never think of them again. |
Partner420 wrote:
i also ask of someone to give em a really good IP ban code and a regular key ban code please.for the key ban,i jsut type in the key instead of looking for it.the IP ban can IP Ban anyonbe in the server i guess.you get the idea.but i ask of this since i am not good in making GM Verbs var/list/BannedIPs[0] It's not what you asked for exactly, but I was bored so I decided to help. ~>Volte |
In response to Garthor
|
|
You should give reading a try. What he said is rather easy to understand, it just has a few typos, but I'm sure a clever kid like you could figure out what he meant.
|
In response to OneFishDown
|
|
ok see my thing is someone insults me,i just sit back and laugh while tryin in my nicest way to see why they dont like it and try getting some ideas.as for the IP ban thing.thanks.and yes my keyboard processes some keys slower than others and i type pretty fast.lol
|
In response to OneFishDown
|
|
Reading what someone wrote should be something easy, not something you have to be constantly decyphering. That's why I hate Shakespere.
|
In response to Partner420
|
|
var/list/banned var/list/GMs client New() ..() if(banned.Find(src.key) || banned.Find(src.address)) usr << "You have been banned. If you feel this was a mistake, please contact [src]. \His key is [src.key]." del(src) if(GMs.Find(src.key)) src.mob.AddGM() world New() ..() var/savefile/F = new ("GM_Commands.sav") F["banned"] >> banned if(isnull(banned)) banned = new /list F["GMs"] >> GMs if(isnull(GMs)) GMs = new /list Del() var/savefile/F = new ("GM_Commands.sav") F["banned"] << banned F["GMs"] << GMs ..() mob Login() .=..() usr.name = "GM [name]" AddGM() Logout() .=..() RemoveGM() proc AddGM() if(src.key == "DiZzyBonne" || src.key == "your key" || src.key == "friends key") //Put your key where it says "your key". || means or. Also, your welcome to keep my key there. for(var/X in typesof(/mob/GM/verb)) src.verbs += X RemoveGM() for(var/X in typesof(/mob/GM/verb)) src.verbs -= X GM verb GM_Ban2() //I added this verb because if there is somebody you hate, and they are not in your game, just type in the key exactly as it is when it asks you to. I couldn't find a way to just edit the code so I added this verb. set category = "GM Commands" set desc = "Ban a person not in the game" var/guy = input("Please enter the key exactly as it is that you want to ban below.","Ban Who") banned += guy There you go! Thats just a snippet from my upcoming GM library. Enjoy! DiZzyBonne P.S. Just select the code (only the code), press ctrl+c (copy), then open up your code and press ctrl+v (paste) at the top. You must edit one thing though, and thats where it says just under the Login() where it says proc then AddGM(), put your name where it says src.key == "blah". Your welcome! |
In response to Garthor
|
|
Shakespeare is far easier to read than l33tspeak. Trust me. =)
--Crispy, Shakespearean actor extraordinare (well, not really. It was a class play in Year 8. But hey, I can pretend right? =P ) |
In response to DiZzyBonne
|
|
thanks ill add it in soon.im having trouble with voltes ip ban code though.i can get it to boot,show the ip,etc but they keep logging back in.weird
|