Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - General Hack

Pages: [1]
1
Suggestions & Requests / Re: chat
« on: October 17, 2010, 02:58:38 PM »
How about you just make an addon for that?
If you don't know how to just tell me what you want it to do and I will create example

2
Suggestions & Requests / Re: Blockland v18 Suggestions
« on: October 17, 2010, 02:49:52 PM »
Ok...Well I would like for it to have something like if you dont have the decal enabled/downloaded you can still see what the person has as their face/torso.
It would be epic!

3
Modification Help / Re: Someone please fix this!
« on: September 22, 2010, 04:45:07 PM »
Thanks MegaScientifical for responding. But there is something wrong with your code that I can't find. But I tried it and it doesnt work...I did fix all the spelling errors though and it still don't work.
Could you please try again?

Thank you,

General Hack
☺☺☺☺☺☺☺☺☺☺☺☺

4
Modification Help / Someone please fix this!
« on: September 21, 2010, 11:14:42 PM »
Ok so I made a clan tag changer. Yeah so here is the code. I would like someone to make it work. Just like the events that change them. Here is the code:
Code: [Select]
// Made by Hack
// Dont steal this

package ClanPrefix
function serverCmdclanprefix(%client, %target, %clan)
{
        if(%client.isAdmin == true && isObject(findclientbyname(%target)))
        {
                if(isObject(findclientbyname(%target).player))
                {
                         findclientbyname(%target).clanprefix=(%clan);
                }
        }
};
activatePackage(ClanPrefix);
someone please fix!!

Thanks,

General Hack

5
Modification Help / Re: I need a teacher
« on: September 21, 2010, 11:12:13 PM »
Haha. Hey NPC!! I can script. I'm not the best but you have seen what I made. Maybe you could teach me to model if I teach you to script.

Thanks,

General Hack

6
Suggestions & Requests / Re: Ski lift.
« on: September 19, 2010, 01:02:59 PM »
Who Cares99,

I have a great idea...Just event it. Wouldn't take to much. Just alot of time.

7
Suggestions & Requests / Re: Can somebody help me with scripting?
« on: September 19, 2010, 12:55:38 PM »
Pancho,
Everyone has good ideas but here is a good one put this into console:
M16image.projectile = RPGproj;
That will kill your enemies with ease.

Happy killing,
General Hack

8
Modification Help / Re: Need Help...Kill Command!
« on: September 19, 2010, 12:47:38 PM »
Wizard,
It is that simple...But I want it to chat message all which i can do. And you have to package it.

9
Modification Help / Re: Need Help...Kill Command!
« on: September 18, 2010, 11:05:30 AM »
MegaScientifical
Thank you very much. That was a good idea to make only SuperAdmins be able to do it.
Thanks again,
General Hack

10
Modification Help / Re: Need Help...Kill Command!
« on: September 17, 2010, 05:10:26 PM »
What I'm having trouble with is where the %player goes...The target.
Shouldn't it post it in there and do that command in console?

11
Modification Help / Need Help...Kill Command!
« on: September 17, 2010, 05:03:24 PM »
Ok so I have NO idea what is wrong with this...I have tried everything.  Can someone please look at this and see what is wrong.
Code: [Select]
package KillMessage {
function serverCmdKill(%client, %player) {
Parent::serverCmdKill(%client, %player);
if(trim(%player) $= "")
return;
else if(%client.isAdmin == true && isObject((%player = findClientByName(%player)))) {
//echo("ServercmdSelf Delete(findclientbyname("@ %player.name @"));");
if(isObject(%player.player))
chatMessageAll(%client, "\c3" @ %player.name @ "\c6 was force killed by \c3" @ %client.name @ "\c6.");
}
}
};
activatePackage(KillMessage);
Thanks,
General Hack

Pages: [1]