|
You last visited: Today at 21:03
Advertisement
Shakes & Fidget Private - Full Script (Tulyita)
Discussion on Shakes & Fidget Private - Full Script (Tulyita) within the Browsergames forum part of the Other Online Games category.
05/18/2014, 21:14
|
#391
|
elite*gold: 0
Join Date: Apr 2014
Posts: 226
Received Thanks: 27
|
Quote:
Originally Posted by szymek111
I think Eptun paid for this files but he deleted some lines of code (maybe he want this only for him xd) than he uploaded sql file and request but guild chat and tower helpers aren't working.
|
Maybe its true, maybe no :/
I don't think so
|
|
|
05/18/2014, 21:23
|
#392
|
elite*gold: 0
Join Date: Nov 2013
Posts: 167
Received Thanks: 57
|
The mediafire file is from tulyita I didnt deleted anything maybe tulyita
|
|
|
05/18/2014, 21:29
|
#393
|
elite*gold: 0
Join Date: Apr 2014
Posts: 226
Received Thanks: 27
|
Ask him why this not working if it should... We will see what he will answer: /
|
|
|
05/18/2014, 21:45
|
#394
|
elite*gold: 0
Join Date: Nov 2013
Posts: 167
Received Thanks: 57
|
Im asking him everyday but he doesnt respond
|
|
|
05/18/2014, 21:47
|
#395
|
elite*gold: 0
Join Date: Apr 2014
Posts: 226
Received Thanks: 27
|
Quote:
Originally Posted by EptunLP
Im asking him everyday but he doesnt respond
|
We must wait
I also sent him a few messages, perhaps will answer me
|
|
|
05/18/2014, 22:50
|
#396
|
elite*gold: 1
Join Date: Jun 2011
Posts: 1,464
Received Thanks: 1,065
|
Guildchat // unfinished
I still don't know how the to communicate with the client, so i could need some help from now..
SQL
Code:
CREATE TABLE IF NOT EXISTS `guild_chat` (
`msg_id` int(11) NOT NULL AUTO_INCREMENT,
`guild_id` int(11) NOT NULL,
`sender_id` int(11) NOT NULL,
`reciver_id` int(11) NOT NULL,
`time` int(11) NOT NULL,
`msg` text NOT NULL,
PRIMARY KEY (`msg_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
Replace
PHP Code:
case $ACT_SEND_CHAT :
break;
with
PHP Code:
case $ACT_SEND_CHAT : // the ususal stuff // msg;0 // what the hell means 0?? $data = explode ( ';', $action_extra );
$msg = $data[0];
$time = new DateTime (); $time = $time->getTimestamp (); $recid = "0"; // get some ids $qry = $db->prepare ( "SELECT user_id, guild_id FROM user_data WHERE ssid = :ssid" ); $qry->bindParam ( ':ssid', $SSID ); $qry->execute (); $ids = $qry->fetchAll ();
// put into db $qry = $db->prepare ("INSERT INTO guild_chat(guild_id, sender_id, reciver_id, time, msg) VALUES(:guildid, :uid, :recid, :time, :msg)"); $qry->bindParam ( ':guildid', $ids [0] ['guild_id'] ); $qry->bindParam ( ':uid', $ids [0] ['user_id'] ); $qry->bindParam ( ':recid', $recid ); $qry->bindParam ( ':time', $time ); $qry->bindParam ( ':msg', $msg ); $qry->execute (); break;
|
|
|
05/18/2014, 22:57
|
#397
|
elite*gold: 0
Join Date: Apr 2014
Posts: 226
Received Thanks: 27
|
But text is displaying on chat line?
|
|
|
05/18/2014, 22:59
|
#398
|
elite*gold: 1
Join Date: Jun 2011
Posts: 1,464
Received Thanks: 1,065
|
nope.. there no callback to the client.. thats why i need help
Still empty
|
|
|
05/18/2014, 23:17
|
#399
|
elite*gold: 0
Join Date: Apr 2014
Posts: 226
Received Thanks: 27
|
Hmmm... we must do array.... but idk how XD
Im working on it
|
|
|
05/19/2014, 06:10
|
#400
|
elite*gold: 706
Join Date: Jan 2011
Posts: 5,297
Received Thanks: 1,081
|
Kann jemand die Files komplett Uplaoden als ein Download ?
Mit den files die man braucht inkl. mysql Datenbank ?
Wäre echt sehr nett und würde jeden helfen.
|
|
|
05/19/2014, 06:34
|
#401
|
elite*gold: 280
Join Date: Nov 2009
Posts: 286
Received Thanks: 140
|
Quote:
Originally Posted by ǝnd1ǝss-ɯonǝʎ
nope.. there no callback to the client.. thats why i need help
Still empty
|
But you are at the right Way.
Here is my Chat :
You have wrote me at PN because i dont like to awnser because it is really hard to explain that in PN have you Skype or Teamspeak than i can help you with you Problems
|
|
|
05/19/2014, 09:10
|
#402
|
elite*gold: 0
Join Date: Feb 2013
Posts: 1
Received Thanks: 0
|
Quote:
Originally Posted by ǝnd1ǝss-ɯonǝʎ
I still don't know how the to communicate with the client, so i could need some help from now..
SQL
Code:
CREATE TABLE IF NOT EXISTS `guild_chat` (
`msg_id` int(11) NOT NULL AUTO_INCREMENT,
`guild_id` int(11) NOT NULL,
`sender_id` int(11) NOT NULL,
`reciver_id` int(11) NOT NULL,
`time` int(11) NOT NULL,
`msg` text NOT NULL,
PRIMARY KEY (`msg_id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
Replace
PHP Code:
case $ACT_SEND_CHAT :
break;
with
PHP Code:
case $ACT_SEND_CHAT :
// the ususal stuff
// msg;0
// what the hell means 0??
$data = explode ( ';', $action_extra );
$msg = $data[0];
$time = new DateTime ();
$time = $time->getTimestamp ();
$recid = "0";
// get some ids
$qry = $db->prepare ( "SELECT user_id, guild_id FROM user_data WHERE ssid = :ssid" );
$qry->bindParam ( ':ssid', $SSID );
$qry->execute ();
$ids = $qry->fetchAll ();
// put into db
$qry = $db->prepare ("INSERT INTO guild_chat(guild_id, sender_id, reciver_id, time, msg)
VALUES(:guildid, :uid, :recid, :time, :msg)");
$qry->bindParam ( ':guildid', $ids [0] ['guild_id'] );
$qry->bindParam ( ':uid', $ids [0] ['user_id'] );
$qry->bindParam ( ':recid', $recid );
$qry->bindParam ( ':time', $time );
$qry->bindParam ( ':msg', $msg );
$qry->execute ();
break;
|
Code:
Nice $ACT_SEND_CHAT but where is
$ACT_PULL_CHAT_DATA,
$ACT_GET_CHAT_HISTORY,
$ERR_GUILD_CHAT_TEXT_ERROR,
$RESP_CHAT_HISTORY,
$RESP_CHAT_LINE
|
|
|
05/19/2014, 14:25
|
#403
|
elite*gold: 0
Join Date: Nov 2012
Posts: 36
Received Thanks: 0
|
@UP: me no work too
@EDIT:
cam someone upload request with gulid chat?
|
|
|
05/19/2014, 16:09
|
#404
|
elite*gold: 0
Join Date: Mar 2014
Posts: 24
Received Thanks: 2
|
|
|
|
05/19/2014, 16:39
|
#405
|
elite*gold: 0
Join Date: Apr 2014
Posts: 226
Received Thanks: 27
|
So?
Almost everyone has this script... at the moment nothing new it isn't: /
Quote:
Originally Posted by WielkaNogawka
@UP: me no work too
@EDIT:
cam someone upload request with gulid chat?
|
Nikt ci nie upie takiego request'u ponieważ czat gildii jest bardzo trudny do zaprogramowania i nikt nie ma zamiaru tego udostępniać (przydało by się  ) ... :/
|
|
|
Similar Threads
|
Shakes & Fidget Private - Final Script (Tower, Toilet, Witch, Epic)
04/23/2014 - Browsergames - 179 Replies
http://www.elitepvpers.com/forum/browsergames-trad ing/3227782-shakes-fidget-private-request-php-toil et-epics-etc.html
//closed
|
Shakes and Fidget Acc. Full Epic
09/28/2012 - Browsergames Trading - 0 Replies
Hallo,
Ich verkaufe hier einen shakes and fidget acc. level 123 auf dem deutschen server 2.
Er ist full epic bis auf die waffe.
Und er ist Kundi, nur eine 25€ paysafecard.
|
All times are GMT +1. The time now is 21:05.
|
|