SSForum.net is back!
-
Posts
7973 -
Joined
-
Last visited
Content Type
Profiles
Forums
Downloads
Events
Gallery
Articles
Everything posted by Samapico
-
Can the server print chat with purple text?!? I know it can easily send green/red '*arena-style' messages... but... purple? or even Yellow messages that aren't team messages?
-
And... he did not have a valid email for these names because he bought them? ... That's why I'd never buy a name... the guy could get it back at any time lol... Plus the fact that it's: useless re!@#$%^&*ed stupid not contributing to the evolution of mankind re!@#$%^&*ed a waste of money what's nn2?
-
nah, the pseudo-original vie skin is fine for me
-
I'm sending some ninja troops to figure out the problem... Stay tuned what's your zone? is there any chance I can catch you there at some time?
-
!@#$%^&*... cant even get it to connect got a class, bbl
-
get 46 http://maverick.sscentral.com/downloads/index.php?category=5 I'll try with build 45 to see if that's the problem...
-
Who Was the Best US President in History?
Samapico replied to Greased_Lightning's topic in General Discussion
1- wrong topic? edit: nevermind, that was posted before the 9/11 topic 2- what cam? 3- anyone could have a cam aboard a plane? "Hey are you bringing your cam on that flight?" "Nah, it won't hit a tower, I don't need it." -
So... what should we do with that file archive forum and its privateness? Should we: a) -Allow anyone to view/download files (including guests) -Keep a 'Private archive' forum where only registered SSDev members can go b ) -Allow registered users (non-SSDev) to view/download files -Keep a 'Private archive' forum where only registered SSDev members can go c) -Only allow SSDev members to register and post any files, including those that are not for public use d) -Allow anyone to register, and not post any 'private' files Current situation is b ) I think
-
Which Merv version are you running? (though I doubt this would have any effect... especially on such a basic plugin) I'm running build 46... and it loads fine
-
you sure you put it in the same folder as Mervbot.exe ? here's an updated version with a fix for the small bug I described above another thing, you'll notice you don't have to unload the plugin and reload it every time you change something in the ini... it reads the ini each time it needs something, so you can change stuff while it's running and it will consider the changes; makes things easier (maybe a bit slower, but it's not really an issue here) -attachment removed-
-
So emm... I need them for lvz purpose. There is already an app to create a fontsheet somewhere Grey is used for displaying a player's information at the top of the screen when you are staff... Like you see the guy's energy and items. It is probably used elsewhere tooPurple is used in the F1 window (grey too) Actually, all colors can be used in F1
-
was not thanks works fine wee
-
99% of schools block the ports continuum need probably the same for libraries Either that, or if you get caught playing a game you're kicked out I know, we should get a Guiness Record for something... like... The Biggest Teamkill ever we gather up like 300 people in TW put everyone in levi put a courageous person in ... emm.. whatever the weakest ship in TW is (weasel?) put him up against a wall... or even better, have an enemy stand right on him so we can get direct hits from bombs then FIRE!!! I approximate to 1 000 000 the damage our courageous person would suffer Hopefull that would make him dead. And not only dead, but the most dead by friendly fire someone has ever been
-
posted it... if you find any bug tell me i'm off to bed Hey man, thanks for the help. the plugin would not load into my merve bot for some reason! Also, am I able to use a *arena, *zone, or in specific *energy command in place of the *prize cmmand with this plugin? The main thing i need is to be able to turn on every players *energy viewing mode to ON instead of OFF. The only way the bot can do that is if it is able to do a "privaction" every time player enters the map with a ship. As we discussed before, i need these to be resent when that player dies also. thanks again! !load prize should work... if not, what appears in the terminal? and yeah, there is a privActions... in the ini... you can send multiple messages by splitting them with \ same goes for all other messages and when the player dies, the actions listed under [ship#] will be resent... *arena or *zone would probably not work, since these actions are sent privately, but you can pm the guy i could add a pubActions thing... but would you need to be able to write the name of the guy in that *arena ? [Enter] privActions=This is some PM\This is another PM\*energy\*prize #-13\*warn do whatever you want why the pm's anyway? Just post here not like there's anything secret in that plugin...
-
note to self: some minor bug i just thought of... if someone changes ship or freq right when he respawns, he will still get the prizes of his old ship/freq, i need to reset the tag on those events i'll send you an updated version tomorrow around the same time... if I don't, send me a PM so I remember; it's a 30 seconds fix really ->bed.
-
looks kinda cool
-
Try this out 45 minutes... Should have gotten a virgin merv plugin code first... I copied one with some useful functions, but had to remove tons of code... that's what took so much time -attachment removed, see end of topic for a working version-
-
Do you want them to be reprized when they respawn?
-
easy enough... And if he enters directly in there? I guess u prize him too?So you want prizes on shipchange and teamchange? (excluding teamchange from spec, else you'd get prized twice)
-
What's that skin?
-
Here's a lazy copy of what I wrote on MGB forum: I was searching for something to split continuum-style animations into individual files... After some search, I just decided to make my own. It's in VB, it supports bmp, png, jpg, gif (not tested gif and jpg much... should work) Would have taken me much less time if it wasn't for the !@#$%^&* png... had some trouble finding a good gdi+ wrapper If any of you really want to use it, and would like some more features or options, just ask... Like I was too lazy to put the quality setting for jpg... if anyone needs that... I made it so it's easy to output chat graphics to usable images for lvz. You can customize from which and to which frame you want to export, so if you want just one color of all the chats, its easy. You can also change the number appended to the first frame exported. ...Last minute add: Generate the File= section of a lvz... why not. I don't want to do this manually. Ok. Done. So... was there already something like that around? Anim_To_Images.zip
-
errr, this is Merv right? There are built-in functions to toggle lvz objects that are much more efficient object_target(p); //sets target of the objects to toggle, set to NULL if you want the object to be public queue_enable(objectID); //do that for every object you want to queue; queue_disable to disable them toggle_objects(); //toggles all objects queued Now... you want to display each digit of your number; you don't need a string for that Simple version: int creds = t->Credit - CredsAdded; //or whatever you want to display for (int i = 0; creds > 0; i++) { int currentdigit = creds % 10; //hold the right-most digit queue_enable(i*10 + currentdigit); //depending on how your lvz is made, this is where your ID is calculated, for a digit 'i' creds /= 10; //get rid of the right-most digit by dividing by 10 } Now, if you want to display leading zeros, and hide old objects, you could have: int creds = t->Credit - CredsAdded; //or whatever you want to display int oldcreds = ...; for (int i = 0; i < 10; i++) { int newdigit = creds % 10; //hold the right-most digit int olddigit = oldcreds % 10; queue_enable(i*10 + newdigit); //depending on how your lvz is made, this is where your ID is calculated, for a digit 'i' queue_disable(i*10 + olddigit); creds /= 10; //get rid of the right-most digit by dividing by 10 oldcreds /= 10; } Hope that helps
-
That already happens. The delay depends on usage though... and if your name has over, maybe, 1000 hours usage or so, I believe that it will never get deleted But names under 100 hours are sometimes deleted after less than a year
-
Emmm, is the repository supposed to work with TortoiseSVN, or only with CVS? Tortoise is giving me some errors when I try to connect to the URL
-
its not complicated at all... and SVN programs allow you to get the latest files and upload your changes real quick