Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

GTE Edit (Extra commands + Development by the community)

Experienced Elementalist
Joined
Apr 4, 2015
Messages
237
Reaction score
88
Hello,

I have a new Goldtree Emulator edit for you guys.
It is not a huge release but it helps the community.

Code:
[B]Whats new?[/B]
The new commands you need in the client:
: hadday - all moves are being switched
: hoofddraai - Let your head spin
: baby - Transform baby
: brb - For when you go brb
: afk -For if you're a little absent
: bew -If you're back
: zwaard 1 / m 4 - You get a laser sword
; sign 1 t / m 10 - A sign in your hand
: Gangnam - Do the Gangnam style!
: ice - Get an ice pack over you
: jump - Tasty jump
: duck - Change in a duck
: love - Get hearts above your head
Yea, the emulator is dutch. You can take the nice commands what you want and put it in your emulator if you like! :')
Some nice screens:

Vimsoration - GTE Edit (Extra commands + Development by the community) - RaGEZONE Forums




Vimsoration - GTE Edit (Extra commands + Development by the community) - RaGEZONE Forums




Vimsoration - GTE Edit (Extra commands + Development by the community) - RaGEZONE Forums


I will try to add more commands, it will be nice if people also share there GTE commands with Ragezone to help the community.

Download link:

Credits to: MrSkype

Bye':eek:tt1:
Vimsoration
 
Last edited:
Experienced Elementalist
Joined
Apr 4, 2015
Messages
237
Reaction score
88
Good evening will update you with these? Please!
Vimsoration - GTE Edit (Extra commands + Development by the community) - RaGEZONE Forums

You need to add cmd_about_name, cmd_koop_name and cmd_roominfo_name in your texts table.
If you can not add them self, i have a database for you where this is included:
 
Junior Spellweaver
Joined
Dec 21, 2013
Messages
121
Reaction score
39
Good to see a GTE edit again but it just seems like you made commands that make users say ':enable <number>' which isn't anything spectacular and for the baby, might be a custom pet to transform to other than giving a huge range of pets for transforming.
 
G'nome sayin'
Joined
May 19, 2011
Messages
459
Reaction score
226
All these new commands are just effects and there is already a command for enabling effects.
 
Experienced Elementalist
Joined
Jul 31, 2008
Messages
289
Reaction score
22
are there more improvements from your side else as the commands? :)

Could you make a list?
 
Experienced Elementalist
Joined
Apr 4, 2015
Messages
237
Reaction score
88
are there more improvements from your side else as the commands? :)

Could you make a list?
Not really this is a thread for commands.
Little things are fixed: coins (credits) hack and roomname exploit.
 
Experienced Elementalist
Joined
Apr 4, 2015
Messages
237
Reaction score
88
If someone can make this for GTE (goldtree emulator) it will be great. Many people want this command, so.. I tried programming it for 2 hours, but could not do it.

(This command :dropkick is official from Fresh-hotel.org (butterfly emulator) )


Chatcommandhandler.cs
internal void dropkick()
{
if (Params.Length > 0)
{
Room Room = Session.GetHabbo().CurrentRoom;
RoomUser Me = Room.GetRoomUserManager().GetRoomUserByHabbo(Session.GetHabbo().Username);
RoomUser Rival = Room.GetRoomUserManager().GetRoomUserByHabbo(Params[1]);


if (Room == null || Me == null || Rival == null)
return;


if (Rival.GetClient().GetHabbo().CurrentRoomId == Session.GetHabbo().CurrentRoomId && (Rival.X == Me.X - 1) || (Rival.X == Me.X + 1) || (Rival.Y == Me.Y - 1) || (Rival.Y == Me.Y + 1))
{
Me.Chat(Session, "*Drop kicks " + Rival.GetClient().GetHabbo().Username + "*", true);


Rival.Statusses.Add("sit", "1.0");
Rival.UpdateNeeded = true;
}
}[

Rolemanager.cs
this.dictionary_4.Add("dropkick", 145);
Screen for what dropkicks need to do:
Thanks in advance, if you can make it for GTE.
 
Last edited:
Elite Diviner
Joined
Apr 5, 2014
Messages
464
Reaction score
223
Can you list the wired furnis that are working in this release?
 

6ix

Newbie Spellweaver
Joined
May 16, 2015
Messages
19
Reaction score
5
Can you list the wired furnis that are working in this release?
The OP previously stated that all wired is functional. Please read the entire thread before posting.
 
Initiate Mage
Joined
Jul 22, 2014
Messages
2
Reaction score
1
@Vimsoration

,

sry i am from Germany xD
 
Newbie Spellweaver
Joined
Jul 15, 2013
Messages
21
Reaction score
0
U didn't make this, this is a edit of MrEpic he released it on rn, you only renamed it. ;)
 
Back
Top