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!

[CLOSED] [REL][SERVICE] Making Holograph Commands! [SERVICE][REL]

Status
Not open for further replies.
Junior Spellweaver
Joined
Aug 15, 2009
Messages
129
Reaction score
16
Re: [REL][SERVICE] Making Holograph Commands! [SERVICE][REL]

Lol push command is released every where
 
Elite Diviner
Joined
May 26, 2009
Messages
428
Reaction score
16
Re: [REL][SERVICE] Making Holograph Commands! [SERVICE][REL]

I don't have a hotel running, but wouldn't this be a good command? It might not be possible.. but I think it's a good idea.

:allmoney

Redeem all the coins in the room. Like put them back into the purse or catalog.
 
Newbie Spellweaver
Joined
Apr 17, 2007
Messages
89
Reaction score
2
Re: [REL][SERVICE] Making Holograph Commands! [SERVICE][REL]

Ermm :S its called google

[ame="http://www.google.be/search?hl=nl&q=holoemu+push+command&btnG=Zoeken&meta=&aq=f&oq="]403 Forbidden[/ame]

If you don't believe me, fine. I'm not finding anything searched on OS studio's aswel, nothing same as on ragezone. Guess no one actually released the snipet over here. And if I just missed it, then I'm sorry for doing so. You could atleast help me instead.
 
Junior Spellweaver
Joined
Aug 15, 2009
Messages
129
Reaction score
16
Re: [REL][SERVICE] Making Holograph Commands! [SERVICE][REL]



If you don't believe me, fine. I'm not finding anything searched on OS studio's aswel, nothing same as on ragezone. Guess no one actually released the snipet over here. And if I just missed it, then I'm sorry for doing so. You could atleast help me instead.

Its Holograph Emulator not holoemu -.- stop being lazy!
 
RageZone's witch <3
Loyal Member
Joined
Jul 14, 2008
Messages
643
Reaction score
9
Re: [REL][SERVICE] Making Holograph Commands! [SERVICE][REL]

Wow, services have improved I see, nice workk.
 
Newbie Spellweaver
Joined
Apr 17, 2007
Messages
89
Reaction score
2
Re: [REL][SERVICE] Making Holograph Commands! [SERVICE][REL]

Its Holograph Emulator not holoemu -.- stop being lazy!
Lol, lazy, right I just said I searched whole ragezone without a find.
[ame="http://www.google.be/search?hl=nl&safe=off&q=holograph+emulator+push+command&btnG=Zoeken&meta=&aq=f&oq="]403 Forbidden[/ame] isn't anything either so stop saying it's my fault.
 

AWA

Master Summoner
Loyal Member
Joined
Feb 24, 2008
Messages
595
Reaction score
389
Re: [REL][SERVICE] Making Holograph Commands! [SERVICE][REL]

I can't make commands atm because i'm busy understanding (& coding) the game joystick.
 
Newbie Spellweaver
Joined
Aug 25, 2009
Messages
22
Reaction score
0
Re: [REL][SERVICE] Making Holograph Commands! [SERVICE][REL]

:drink + ID of the drink
ex : :drink 16

Thanks
 
Experienced Elementalist
Joined
Aug 15, 2008
Messages
298
Reaction score
15
Re: [REL][SERVICE] Making Holograph Commands! [SERVICE][REL]

Is there a :poll command for Infobus & Rooms?
 
Occasional Visitor
Joined
Aug 10, 2006
Messages
335
Reaction score
270
Re: [REL][SERVICE] Making Holograph Commands! [SERVICE][REL]

I have the packets for R26 at least.
I will edit this post shortly.


Also DON'T USE :globalfurni IN YOUR SERVER!
It has an SQL injection exploit issue.

Edit:
Here is some fake code to explain the structure:
PHP:
// Send the question
string Packet = "AO"
Packet += Question + "\x02"
Packet += Encoding.VL64Encode(TheAmmountOfAnswers)
Packet += Encoding.VL64Encode(AnswerOneID)
Packet += AnswerOneText + "\x02"

if(TheAmmountOfAnswers > 1)
{
Packet += Encoding.VL64Encode(AnswerTwoID)
Packet += AnswerTwoText + "\x02"
}
if(TheAmmountOfAnswers > 2)
{
Packet += Encoding.VL64Encode(AnswerThreeID)
Packet += AnswerThreeText + "\x02"
}
if(TheAmmountOfAnswers > 3)
{
Packet += Encoding.VL64Encode(AnswerFourID)
Packet += AnswerFourText + "\x02"
}
if(TheAmmountOfAnswers > 4)
{
Packet += Encoding.VL64Encode(AnswerFiveID)
Packet += AnswerGiveText + "\x02"
}
if(TheAmmountOfAnswers > 5)
{
Packet += Encoding.VL64Encode(AnswerSixID)
Packet += AnswerSixText + "\x02"
}

Sending the Results coming soon.

Edit 2:
Here is the packet to show the votes to users
PHP:
// Send the results
string Packet = "AP"
Packet += Encoding.VL64Encode(TheAmmountOfAnswers)
Packet += Encoding.VL64Encode(AnswerOneID)
Packet += Encoding.VL64Encode(AnswerOneVoteCount)

if(TheAmmountOfAnswers > 1)
{
Packet += Encoding.VL64Encode(AnswerTwoID)
Packet += Encoding.VL64Encode(AnswerTwoVoteCount)
}
if(TheAmmountOfAnswers > 2)
{
Packet += Encoding.VL64Encode(AnswerThreeID)
Packet += Encoding.VL64Encode(AnswerThreeVoteCount)
}
if(TheAmmountOfAnswers > 3)
{
Packet += Encoding.VL64Encode(AnswerFourID)
Packet += Encoding.VL64Encode(AnswerFourVoteCount)
}
if(TheAmmountOfAnswers > 4)
{
Packet += Encoding.VL64Encode(AnswerFiveID)
Packet += Encoding.VL64Encode(AnswerGiveVoteCount)
}
if(TheAmmountOfAnswers > 5)
{
Packet += Encoding.VL64Encode(AnswerSixID)
Packet += Encoding.VL64Encode(AnswerSixVoteCount)
}

Packet += Encoding VL64Encode(TotalAmmountOfVotes)

I forgot to say I only had the S-C ones but they are piss easy to get.
This was mainly through logging Debbo 3.5 and then guessing.
 
Last edited:
Junior Spellweaver
Joined
May 11, 2007
Messages
196
Reaction score
1
Re: [REL][SERVICE] Making Holograph Commands! [SERVICE][REL]

I have the packets for R26 at least.
I will edit this post shortly.


Also DON'T USE :globalfurni IN YOUR SERVER!
It has an SQL injection exploit issue.


Edit:
Here is some fake code to explain the structure:
PHP:
// Send the question
string Packet = "AO"
Packet += Question + "\x02"
Packet += Encoding.VL64Encode(TheAmmountOfAnswers)
Packet += Encoding.VL64Encode(AnswerOneID)
Packet += AnswerOneText + "\x02"

if(TheAmmountOfAnswers > 1)
{
Packet += Encoding.VL64Encode(AnswerTwoID)
Packet += AnswerTwoText + "\x02"
}
if(TheAmmountOfAnswers > 2)
{
Packet += Encoding.VL64Encode(AnswerThreeID)
Packet += AnswerThreeText + "\x02"
}
if(TheAmmountOfAnswers > 3)
{
Packet += Encoding.VL64Encode(AnswerFourID)
Packet += AnswerFourText + "\x02"
}
if(TheAmmountOfAnswers > 4)
{
Packet += Encoding.VL64Encode(AnswerFiveID)
Packet += AnswerGiveText + "\x02"
}
if(TheAmmountOfAnswers > 5)
{
Packet += Encoding.VL64Encode(AnswerSixID)
Packet += AnswerSixText + "\x02"
}
Sending the Results coming soon.

All working packets?
All Bugs fixed?

Woot !!

Thanks, !!
 
Occasional Visitor
Joined
Aug 10, 2006
Messages
335
Reaction score
270
Re: [REL][SERVICE] Making Holograph Commands! [SERVICE][REL]

They worked on Habbz (R26) so they shouldn't be to hard to put into any recent release.
 
Junior Spellweaver
Joined
Sep 8, 2009
Messages
196
Reaction score
6
Re: [REL][SERVICE] Making Holograph Commands! [SERVICE][REL]

Buy and Sell rooms please

:Buyroom Amount
:Sellroom Amount
 
Junior Spellweaver
Joined
Mar 4, 2009
Messages
165
Reaction score
5
Re: [REL][SERVICE] Making Holograph Commands! [SERVICE][REL]

I have the packets for R26 at least.
I will edit this post shortly.


Also DON'T USE :globalfurni IN YOUR SERVER!
It has an SQL injection exploit issue.

Edit:
Here is some fake code to explain the structure:
PHP:
// Send the question
string Packet = "AO"
Packet += Question + "\x02"
Packet += Encoding.VL64Encode(TheAmmountOfAnswers)
Packet += Encoding.VL64Encode(AnswerOneID)
Packet += AnswerOneText + "\x02"

if(TheAmmountOfAnswers > 1)
{
Packet += Encoding.VL64Encode(AnswerTwoID)
Packet += AnswerTwoText + "\x02"
}
if(TheAmmountOfAnswers > 2)
{
Packet += Encoding.VL64Encode(AnswerThreeID)
Packet += AnswerThreeText + "\x02"
}
if(TheAmmountOfAnswers > 3)
{
Packet += Encoding.VL64Encode(AnswerFourID)
Packet += AnswerFourText + "\x02"
}
if(TheAmmountOfAnswers > 4)
{
Packet += Encoding.VL64Encode(AnswerFiveID)
Packet += AnswerGiveText + "\x02"
}
if(TheAmmountOfAnswers > 5)
{
Packet += Encoding.VL64Encode(AnswerSixID)
Packet += AnswerSixText + "\x02"
}

Sending the Results coming soon.

Edit 2:
Here is the packet to show the votes to users
PHP:
// Send the results
string Packet = "AP"
Packet += Encoding.VL64Encode(TheAmmountOfAnswers)
Packet += Encoding.VL64Encode(AnswerOneID)
Packet += Encoding.VL64Encode(AnswerOneVoteCount)

if(TheAmmountOfAnswers > 1)
{
Packet += Encoding.VL64Encode(AnswerTwoID)
Packet += Encoding.VL64Encode(AnswerTwoVoteCount)
}
if(TheAmmountOfAnswers > 2)
{
Packet += Encoding.VL64Encode(AnswerThreeID)
Packet += Encoding.VL64Encode(AnswerThreeVoteCount)
}
if(TheAmmountOfAnswers > 3)
{
Packet += Encoding.VL64Encode(AnswerFourID)
Packet += Encoding.VL64Encode(AnswerFourVoteCount)
}
if(TheAmmountOfAnswers > 4)
{
Packet += Encoding.VL64Encode(AnswerFiveID)
Packet += Encoding.VL64Encode(AnswerGiveVoteCount)
}
if(TheAmmountOfAnswers > 5)
{
Packet += Encoding.VL64Encode(AnswerSixID)
Packet += Encoding.VL64Encode(AnswerSixVoteCount)
}

Packet += Encoding VL64Encode(TotalAmmountOfVotes)

I forgot to say I only had the S-C ones but they are piss easy to get.
This was mainly through logging Debbo 3.5 and then guessing.

Can u tell me where to put these in my server. If i need to convert into chars i might need help.
 
Newbie Spellweaver
Joined
Aug 25, 2009
Messages
22
Reaction score
0
Re: [REL][SERVICE] Making Holograph Commands! [SERVICE][REL]

:drink = ID of the drink
ex: drink 16
for server r.35 please
 

AWA

Master Summoner
Loyal Member
Joined
Feb 24, 2008
Messages
595
Reaction score
389
Re: [REL][SERVICE] Making Holograph Commands! [SERVICE][REL]

:drink = ID of the drink
ex: drink 16
for server r.35 please
It's not tested but it should work.
PHP:
                    case "drink":
                            {
                               string item = args[1];
                               statusManager.carryItem(item);
                                break;
                            }
 
Newbie Spellweaver
Joined
Aug 25, 2009
Messages
22
Reaction score
0
Re: [REL][SERVICE] Making Holograph Commands! [SERVICE][REL]

Thanks :)
Is it possible :drink + username + ID ?
 
Last edited:
Status
Not open for further replies.
Back
Top