Hello everyone!
At this page on this website, you are able to make requests for Flash and/or SmartFoxServer tutorials. To request a tutorial, just make a comment on this page and if I decide to make a tutorial on the requested topic, the tutorial will be on the home page of this site.
Well, that's all for this page.
~Cool Boy 714
MUST BE FIRST COMMENT! :D I need a tutorial on how to do different colors and moderator outfits on a SmartFox Server AvatarChat. :D The moderator one in more important. ;-]
ReplyDeleteHey, can you do buddies please? I would really love that!
ReplyDeleteBobhead202: Since you were the first comment, I will make a post on the home page on your request. :P
ReplyDeleteTree Line 1: I will work on that after I finish two other tutorials. :P
ReplyDeleteOk thanks Cool Boy.
ReplyDeleteHow bout emotes? I have almost got them, theres just a SMALL glitch in them. Could you do a tut in that please?
ReplyDeleteHey, Could you do a private messaging tutorial? That would be great! Thanks
ReplyDeleteHow to install Smartfox on cPanel?!
ReplyDeleteJohnnyCP: There is no way to install SmartFoxServer on a cPanel to my knowledge.
ReplyDeleteHey CB could you make a tutorial on how to make different chat bubbles (Ex. Mods would have a blue chat bubble) If you could that would be awesome!
ReplyDeleteOh..Then how do we setup a game?
ReplyDeleteJohnnyCP: You have to have a server. cPanel isn't a server. I usually use a virtual private server for my games, but another method of getting a game online is using a home server, which you can do if you have a static IP address. For more information on this, make a thread on the SmartFoxServer Forums and more people will respond to you about this. Or you could just search their forums, as it has been explained many times in them.
ReplyDeleteThe link to the SmartFoxServer Forums is this: http://smartfoxserver.com/forums/
Tree Line 1 said...
ReplyDeleteHow bout emotes? I have almost got them, theres just a SMALL glitch in them. Could you do a tut in that please?
---------------------------------------
Tree Line 1: Sure, I'm working on that now. The tutorial on this will be up soon.
I want tutoial on or adding a new room on sfs PRO please a video would be perfect
ReplyDeleteThanks CB ;)
ReplyDeleteMr Nothersan said...
ReplyDeleteHey, Could you do a private messaging tutorial? That would be great! Thanks
--------------------------
Mr Nothersan: Sure. That will be the next tutorial on this site. I have already put a place holder on the home page.
Skybucks100 said...
ReplyDeleteHey CB could you make a tutorial on how to make different chat bubbles (Ex. Mods would have a blue chat bubble) If you could that would be awesome!
-----------------------------
Skybucks100: Sure, the tutorial has just been posted. :P
Cannon Turtle said...
ReplyDeleteI want tutoial on or adding a new room on sfs PRO please a video would be perfect
---------------------------------------
Cannon Turtle: sure, it will be on the home page shortly. I'm uploading it to YouTube right now.
A tutorial of making an actual virtual world, please. Basics if you would.
ReplyDeleteHey, this is not for me but I think you should make a playercards/badges tutorial :P I Can't be bothered writing it XD
ReplyDeletePrang123: Alright, the tutorial is now in progress.
ReplyDeleteHello there! Could you do a tutorail on a inventory? Like when you buy sonething it goes to there and then you can were it? xD Thanks! :)
ReplyDeleteAlso, Register and Login, with AvatarChat, if you can do that i will be soo happy! xD Thanks
ReplyDeleteI would like a Chat Log Tutorial XD
ReplyDeleteHow to add a static IP?
ReplyDeleteJohnnyCP: Your question/request is unclear. What are you wanting to add a static IP address to?
ReplyDeleteWolfkit said...
ReplyDeleteA tutorial of making an actual virtual world, please. Basics if you would.
--------------------
Wolfkit: That can really be explained very simply in the SmartFoxServer Documentation.
RyanBoyling said...
ReplyDeleteHello there! Could you do a tutorail on a inventory? Like when you buy sonething it goes to there and then you can were it? xD Thanks! :) Also, Register and Login, with AvatarChat, if you can do that i will be soo happy! xD Thanks
---------------------
RyanBoyling: Those tutorials are more advanced so tutorials like that will come later on.
Prang123 said...
ReplyDeleteI would like a Chat Log Tutorial XD
-------------
Prang123: Sure, I'll get to work on that now.
I would like a tutorial how to make mini games.
ReplyDelete@Pen50gi: That is basically just using information from a the main movie and using it in an external loaded movie. This isn't too hard, so I don't really think I need to make an actual post on this request. Just Google up something about using information from a main movie to an external loaded movie in Flash, or post on a Flash forum, such as the Kirupa Forums.
ReplyDeleteTextfield with button next to it. User enters username in textfield, clicks button, user is banned.
ReplyDeleteAlso whats wrong with this code:
if (_global.myName == "mash" && msg == "!end rickroll") {
mc.bubble._visible = false;
mc.bubble.message.text = "";
mc.bubble.emotes._visible = false;
_root.InstanceName_0.unloadMovie("rickroll.swf");
}
The rickroll.swf only shows up client side. Do you have msn or something?
@Anonymous: I assume you have that coding on the smartfox.onPublicMessage handler, so the problem with your coding is that the _global.myName is different for every person logged into your application. To fix this, try putting user.getName() instead of _global.myName. The difference is that _global.myName == the user that is logged in and user.getName() is who broadcasts the event.
ReplyDeleteI am using your playercard tutorial.
ReplyDeleteHow do I make it so that if someone's username is "bob" for example, on the player card, a shape w/ instance name "star" is located , and if someone's username is "bob", the star is visible, if their username is not bob, the star is not visible.
I can only get this to happen client side!!
@Anonymous: Well, one way I did this in one of my earliest multiplayer games (and one of my most successful in the short term), I added this coding on the playercard's main frame:
ReplyDeletethePlayerCard.playerBadge._visible = false;
if (thePlayerCard.playerName.text == "Username") {
thePlayerCard.playerBadge._visible = true;
}
That's basically all I did for the test game I created not too long ago.
I have this code:
ReplyDeletethePlayerCard.mod_star._visible = false;
if (ismoderator == "1") {
thePlayerCard.mod_star._visible = true;
}
Where ismoderator is an item in my database. The problem is, if the user is a moderator, his playercard and everyone else's player card have the mod star visible to him. If someone is not a moderator, no one has the mod star visible, even if they are a mod.
@Anonymous: What coding are you using to generate the ismoderator variable and receive the database value? Also, what happens when you trace out the variable?
ReplyDeleteTo trace it, use this coding:
trace(ismoderator);
The ismoderator returns the right value, the problem is, if the user IS a mod, then everyone's badge is visible to him. If the user is not a mod, then no one's badge is visible to them.
ReplyDeleteCool boy, I try downloading both SFS and SFS X2 but SFS says, 'java' isnt a conrtol, and when I try opening SFS X2 it closes without me doing anything in like a millisecond... how do i download it?
ReplyDelete@Anonymous: At a quick second glance over your coding, I read it as saying the following:
ReplyDeleteif (the current user is a moderator) {
show the user's badge
}
To fix it, I would add this coding above all that:
thePlayerCard.badgeInstanceName._visible = false;
if (thePlayerCard.playerName.text == "Username") {
thePlayerCard.badgeInstanceName._visible = true;
}
I whould like really really like to knwo how to make a mod magic i hope this will be posted thanks !!
ReplyDeleteThat's the thing, I don't want to define everyone's username. Is it possible to use the ismoderator == "1" instead?
ReplyDelete@Anonymous: Well, considering your only wanting to use the client, your going to have to define all the usernames one way or another.
ReplyDelete@Kittkat4: Is Java correctly installed on the computer your trying to run SmartFoxServer with?
ReplyDeleteWhat do you do when you get an error like this? :P
ReplyDelete**Error** Scene=Scene 1, layer={ code }, frame=9:Line 54: The class or interface 'SmartFoxClient' could not be loaded.
var smartfox:SmartFoxClient = new SmartFoxClient()
**Error** Scene=Scene 1, layer={ code }, frame=16:Line 56: The class or interface 'Room' could not be loaded.
smartfox.onJoinRoom = function(roomObj:Room)
**Error** Scene=Scene 1, layer={ code }, frame=16:Line 68: The class or interface 'User' could not be loaded.
var user:User = userList[i]
**Error** Scene=Scene 1, layer={ code }, frame=16:Line 82: The class or interface 'User' could not be loaded.
smartfox.onUserEnterRoom = function(fromRoom:Number, user:User)
**Error** Scene=Scene 1, layer={ code }, frame=16:Line 121: The class or interface 'User' could not be loaded.
smartfox.onPublicMessage = function(msg:String, user:User)
Total ActionScript Errors: 5 Reported Errors: 5
@Wolfkit: Those errors are telling you that the SmartFoxClient isn't being loaded properly. To fix this, if your using the avatarChat example files, either set your classpath (as described in the SmartFoxServer Docs), or copy and paste the folders located at {sfs-installation}/Flash API/AS2/it and {sfs-installation}/Examples/AS2/avatarChat Folder/lib into the same directory as your current Fla file. Doing that should fix the errors you are getting.
ReplyDeleteOk. I'm using Simple Chat currently though, but I'll upgrade to avatar chat eventually. Thanks.
ReplyDelete@Bluewish: Mod Magic tutorial is being made now, it should be up in a bit. :P
ReplyDeletePlease just do that tutorial next about Private Rooms/ Homes.. Please! I REALLY do need this. Thanks!
ReplyDeletefor avatar chat, a tutorial on how to make "walls" that the avatar cannot go/walk on?
ReplyDelete@RyanBoyling: Dynamic room creation tutorial has just been added to the home page of this site. :P
ReplyDeletevps is necessary to connect a license to 20 users?
ReplyDelete@Seifa: A virtual private server isn't really 'required', but some sort of server is. Most people I know use a home server, but I myself prefer virtual private servers instead. :P
ReplyDelete@Anonymous: The tutorial on the "No Wall Walk" has just been published on the home page.
ReplyDeleteHello, can you make a tutorial on making a Server Message for use of Moderators only?
ReplyDelete@Josh11: I'm guessing you mean a moderator message tutorial, so that will be made.
ReplyDelete@Cool Boy 714: Thanks, looking forward to it.
ReplyDeleteHi Cool Boy, an email where I can reach you?
ReplyDeleteThanks
i luv ur websitee cb714. u r so so so awesumm! kep up dat good worrk.
ReplyDeleteHey Coolboy, please could you make an avatarChat tutorial about how to make a decent, secure password protected virtual world game via a mySQL database? I'm sure that it would help alot of people who are trying to build their own games.
ReplyDeleteThanks,
Aidan.
Please read the update to the newest post! Specify SFS2X or SFS1X!
DeleteWhere's part 3 ??????
ReplyDeletehttp://sfs-tutorials.blogspot.co.il/2011/07/smartfoxserver-tutorial-how-to-make.html
can you do a drag and drop using smartfox server
ReplyDeletecan you mKE A DRAG AND DROP USING SMART FOX SERVER. JUST MOVING OBJECTS AROUND
ReplyDeletePlease read the update to the newest post! Specify SFS2X or SFS1X!
DeleteHi..I want to build an online multiplayer flash games. Some game to play with cards..I am not sure exactly where to start..So can u please give a tutorial on how can i proceed with flash and smart fox server with it
ReplyDeleteHi,
ReplyDeleteI need a tutorial of how to make a game like Club Penguin. Thanks!
I love the website! Can you do how to make clothing items? I'm trying to make a VW. :) Thanks for the help!
ReplyDeletePlease read the update to the newest post! Specify SFS2X or SFS1X!
DeletePlzzzzz can you do a tutorial aboud money...
ReplyDeleteA sell system, and buy system
xD
thx so much!
I love ur blog
not sure if you still post here, but id like to request a tutorial.
ReplyDeleteHow do you make the avatar in avatarChat walk, instead of gliding around?
Thanks,
Joey
Coolboy can you please make tutorial on how to make like moderators have yellow names :D
ReplyDelete