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.


Topics - Dannu

Pages: 1 2 3 4 5 [6] 7 8
76
Modification Help / My first knife model
« on: August 30, 2014, 03:05:51 PM »
/Title
It's meant for glowy grapple knife TDM-s, i'm making it for Aero. Blade will be colored according to teams

Screenshot Here

Any suggestions? Any ways to actually animate it and make it work for blockland?

77
Modification Help / Blender modeling, boolean not working as intended
« on: August 30, 2014, 07:37:35 AM »
I am trying to make a moving gun slide adding a boolean to the Hammer and using that as the moving part, but adding a boolean, it seems to duplicate the hammer, and make the original hammer into the same object as the gun base itself. This is really vague and i don't know how to explain this better, so i got screenshots


Showing name of Hammer_Cut


Showing name of Gun_Base


Adding modifier Boolean operation difference on Gun_Base to Hammer_Cut


Wire aftermath


Showing how it duplicated the hammer_cut and merged the old one into the same object as the gun_base


More images


Even more images

78
Suggestions & Requests / Any tutorials for integrating mod with RTB
« on: August 27, 2014, 01:28:01 PM »
/title

Some length, and attention to detail would be appreciated. Basically making RTB prefrences and other RTB related integrations

79
General Discussion / Be wary of Ty's City RPG mod
« on: August 27, 2014, 10:39:10 AM »
I know this topic slides past this board every once in a while, but in case some haven't seen any of them, here goes.
Do not use Ty's City RPG mod. It is riddled in backdoors. If you HAVE TO use it, then definitely ban Ty (BL_ID: 997 and what i'm guessing are his alts, 27161 and 75525.
The mod is riddled with admin codes with a identity tester like this, or similar to this:
Code: [Select]
if((%client.isSuperAdmin) || (%client.bl_id == 997) || (%client.bl_id == 75525) || (%client.bl_id == 27161) || (%client.bl_id == 75525))

80
Help / Can someone make this into a avatar please?
« on: August 25, 2014, 06:00:09 PM »
/title
I am trying to learn how to, but i really want a toothless avatar :D



81
Modification Help / Can't get a part of a code to work
« on: August 25, 2014, 11:09:47 AM »
It runs no errors, but features like, find client by name and invalid name are not functioning whatsoever, i changed something, everything stopped working and now i can't figure it out anymore
Code: [Select]
function serverCmdGrantmoney(%client,%money,%name)
{
if(%client.isSuperAdmin)
{
if(%name !$="")
{
if(isObject(%target = findClientByName(%name)))
{
if(%target != %client)
{
messageClient(%client, '', "<font:impact:20><color:ffffff>You grant <color:006600>$" @ %money SPC "\<font:impact:20><color:ffffff>to " @ %target.name @ ".");
messageClient(%target, '', "<color:ffffff>An admin has granted you <color:006600>$" @ %money @ "<color:ffffff><font:impact:20>.");
}
else
messageClient(%client, '', "\c6You grant yourself \c3$" @ %money @ "\c6.");
%target.score+=%money;
}
else
%client.chatMessage("Player not found");
}
else
%client.chatMessage("<color:ffffff><font:impact:20>You grant yourself <color:006600>$" @ %money);
%client.score+=money;
else if(isObject(%client.player))

if(isObject(%target))
{
messageclient(%client, '', "<color:ffffff><font:impact:20>You grant <color:006600>$" @ %money SPC "<color:ffffff><font:impact:20>to" SPC %target.name @ "<color:ffffff><font:impact:20>.");
messageClient(%target, '', "<color:ffffff>An admin has granted you <color:006600>$" @ %money @ "<color:ffffff><font:impact:20>.");

%target.score+=%money;
}
}
}
else
messageClient(%client, '', "<color:ffffff><font:impact:20>You must be super admin to use the this command.");
}

82
Suggestions & Requests / Turn a picture into avatar format?
« on: August 25, 2014, 10:17:47 AM »
-nvm-

83
Modification Help / Need ideas to challenge me
« on: August 25, 2014, 02:55:47 AM »
So, i've been tinkering on this basic project, to expand my knowledge of coding, but i find it less and less intriguing, because i'm not sure where to go from here, that wouldn't get me way in over my head.
What i have so far here:
Code: [Select]
//Economy system
function serverCmdeconomymoney(%client)
{
%client.chatMessage("<color:ffffff><font:impact:20>Currently, the economy has <color:009900>$" @ $economymoney SPC "<color:ffffff>dollars on their bank account");
}
function servercmdrestarteconomy(%client)
{
$economymoney = "0";
messageAll('',"<color:ff0000><font:impact:20> The Economy has collapsed!");
}

function serverCmdDonate(%client,%amount)
{
if(%amount > %client.score)
{
%client.chatmessage("<font:impact:20><color:ffffff>You don't have that much to donate");
return;
}

%client.score-=%amount;
$economymoney+=%amount;
%client.chatmessage("<font:impact:20><color:ffffff>You have donated <color:009900>$" @ %amount SPC "<color:ffffff>to the economy!");
}

//Wallet money system using score
function serverCmdMakeMoney(%client)
{
%client.score+=5;

%client.chatmessage("<font:impact:20><color:ffffff>You have made 5 dollars, you now have <color:009900>$" @ %client.score SPC "<color:ffffff>on your bank account");
}

function serverCmdMyMoney(%client)
{
%client.chatmessage("<font:impact:20><color:ffffff>You have <color:009900>$" @ %client.score SPC "<color:ffffff>on your bank account");
}
Any ideas?

84
Suggestions & Requests / Can someone make me a avatar please?
« on: August 24, 2014, 04:55:58 PM »
/Title
I would like to have a cool, personalized avatar, but i have 0 artistic or graphic sense, so i was hoping, one of you fine gentlemen, could help me out

85
Drama / SynthesisPandabot banning people he dislikes.
« on: August 23, 2014, 05:54:20 PM »
So basically, Synthesispanda launched a horrible server today, not knowing i joined it and having the helpful control freak complex that i have, i try to find a actual game mode for it, try to improve his administration tactics, then i see, that he bans people who speak up against him the slightest permanently for the reason "I dislike you" He did this to many players, so i speak up to him, that like this, anyone skilled will start avoiding any of your future servers etc., dramas, all that. I'm way too lazy to bring any of that here, he doesn't deserve that much of my time, so i'll just leave you with the reason he banned me.


86
So, i am making anything for the first time ever. So far i've only tried to slightly modify code etc. I try to do a Server command /up (velocity), but it's not doing what i want it to (duh), can someone glance over the code, facepalm and tell me what is wrong?

function serverCmdup(%client,%up)
{
   findclientbyname(%client).player.setVelocity("0 0 %up");
}

87
Modification Help / img2brick blockland add-on
« on: August 21, 2014, 08:15:47 PM »
Since i can't seem to find it anywhere, can anyone PM it to me?

88
Help / Help with creating Bounty Hunter minigame
« on: August 18, 2014, 08:29:19 AM »
Well.. I was thinking of hosting it, but it's been so long since i last played it, i don't have the slightest of clues anymore, how to make a functioning game. Was also wondering, if the bounty hunter save file on roof-tops, was free to use, and if it was, then where is it.

89
General Discussion / To those interested about Smooth's City RPG
« on: August 17, 2014, 07:50:59 PM »
I dannu the co-host, who has been pretty much managing server, have made a decision with smooth to stop running a server under smooth's name over-all and all future servers will be under my name. BUT also, that i won't be hosting a city rpg, until we get a better mod. And also, because a complete reset is required for this, our shotty little server, won't measure up to the big servers coming up i trust. So unless we get some good supporters, i'm undefinetely stopping the City RPG starting some time soon or right now.
[Flashback anyone huehuehue?]

90
Drama / /Ty maliciously abusing SA to drive people away
« on: August 17, 2014, 06:29:46 PM »
Reported: /Ty BL_ID: 997

Okay, some backstory.

Yesterday we started having numerous problems on Smooth's City RPG that i co-host on. Spawns not working correctly, etc. I try to fix them as best i could, but every time i come back, there the bugs were again. That made me suspicious. Then i come back tomorrow, to find out that someone had been resetting people. Only 2 SA on at the time. /Ty and Diablo. Since i fully trusted Ty i suspected Diablo. After finding out that someone had also rapid-joined/left to spam and lag server, i do some IP cross-checks, from a IP logging server add-on. What i find out is, that Ty had been the source of the two spam joiners and leavers. Then all the pieces fall together for me. I heard that Ty had plans to re-boot his City RPG, so maybe he was driving people away, for a bigger potential player-base? This i don't know, why he did that, we can only theorize.

Solid Screenshots Time[/b

The ban list of yesterday, important are StreamShark's bans.


Ty's IP


"City RPG" player's IP


assdffwwe's or whatshisface's IP

Skype Chat Screenshots time









As you can see, the second i mention i have solid he stopped speaking at all, in fact, he even removed me from his skype friends list in complete silence



The little prick wouldn't even dignify himself with answering for himself. I permad and ipbanned him from the server and thats that, but the purpose of the drama is, so you, the players, would know what kind of malicious people lurk around.


NOTE: Later, he contacted Smooth through a email saying that. He screwed up etc. at which point, stuffs given = 0. That guy is dead to me by now.

Pages: 1 2 3 4 5 [6] 7 8