URI:
   DIR Return Create A Forum - Home
       ---------------------------------------------------------
       SwatVsTerrost [SVT]
  HTML https://bluevsred.createaforum.com
       ---------------------------------------------------------
       *****************************************************
   DIR Return to: [SvT] A/D Archive
       *****************************************************
       #Post#: 44--------------------------------------------------
       Admin apply
       By: Krishna Date: August 24, 2013, 7:51 am
       ---------------------------------------------------------
       Your in-game name: Krishna
       Your real name: Krishna
       Your Xfire username:N/A
       Gender: male
       Your age: 17
       Country: india
       Timezone: +5.30 GMT
       Name of your current clan:N/A
       Since when have you been playing SAMP? 5 year
       Since when have you been playing A/D?   2 year
       Have you ever hacked or got banned? If yes, mention the server
       and reason of ban:no coz i hate hacks and hackers
       Do you have any mods in your game? If yes, list them all:  N/A
       Can you play on AC? : Yes
       Your normal FPS:   30
       Your ping on [SvT]- A/D server:290-300
       Your normal packetloss: 0.0
       Do you have A/D admin experience? If yes, mention the server
       name and your admin level: yes level 5
       Do you have any scripting knowledge? If yes, show us some of
       your work: yes scripting but few
       Explain your behavior in at least 20 words: i m Good Player in
       SAMP
       Mention any other useful info you want to share with us:   N/A
       :D
       #Post#: 45--------------------------------------------------
       Re: Admin apply
       By: [WTF]Goku Date: August 24, 2013, 7:55 am
       ---------------------------------------------------------
       +1
       >> Active At Server.
       >>Mature.
       >>Good English.
       >>Nice Attitude.
       #Post#: 47--------------------------------------------------
       Re: Admin apply
       By: Krishna Date: August 24, 2013, 7:59 am
       ---------------------------------------------------------
       [size=14pt]Huge Thanks[/size] :D
       #Post#: 48--------------------------------------------------
       Re: Admin apply
       By: Eminem Date: August 24, 2013, 8:15 am
       ---------------------------------------------------------
       [quote author=[WTF]Goku link=topic=29.msg45#msg45
       date=1377348916]
       +1
       >> Active At Server.
       >>Mature.
       >>Good English.
       >>Nice Attitude.
       [/quote]this^^
       #Post#: 51--------------------------------------------------
       Re: Admin apply
       By: [WTF]Goku Date: August 24, 2013, 8:19 am
       ---------------------------------------------------------
       hmm..
       so u know scripting ok make a script of radio. then we will see
       ........
       #Post#: 53--------------------------------------------------
       Re: Admin apply
       By: Eminem Date: August 24, 2013, 8:22 am
       ---------------------------------------------------------
       radio......
       script.......
       ?? ?? ??
       #Post#: 55--------------------------------------------------
       Re: Admin apply
       By: Krishna Date: August 24, 2013, 8:38 am
       ---------------------------------------------------------
       lol EZ ............. :D :D :D
       [code]
       /*
       
       
       
       ---------------------
       */
       //#define FILTERSCRIPT
       
       #include <a_samp>
       #include <zcmd>
       
       //Color Defines
       #define COLOR_RED 0xFF0000FF
       
       //Loose Indent Warning Removal
       #pragma tabsize 0
       
       public OnFilterScriptInit()
       {
       print("Radio System by Krishna");
       return 1;
       }
       
       public OnFilterScriptExit()
       {
       print("Radio System by Krishna");
       return 1;
       }
       
       public OnPlayerConnect(playerid)
       {
       StopAudioStreamForPlayer(playerid);
       return 1;
       }
       
       public OnVehicleDeath(vehicleid, killerid)
       {
       StopAudioStreamForPlayer(killerid);
       return 1;
       }
       
       public OnPlayerExitVehicle(playerid, vehicleid)
       {
       StopAudioStreamForPlayer(playerid);
       return 1;
       }
       
       public OnDialogResponse(playerid, dialogid, response, listitem,
       inputtext&#91;])
       {
       if(dialogid == 700)
       {
       if(!response)
       {
       SendClientMessage(playerid, COLOR_RED, "You Canceled
       the Radio dialog.");
       }
       if(response)
       {
       //Station 1
       if(listitem == 0)
       {
       
       PlayAudioStreamForPlayer(playerid,"
  HTML http://yp.shoutcast.com/sbin/tunein-station.pls?id=32999");
       }
       //Station 2
       if(listitem == 1)
       {
       
       PlayAudioStreamForPlayer(playerid,"
  HTML http://yp.shoutcast.com/sbin/tunein-station.pls?id=65456");
       }
       //Station 3
       if(listitem == 2)
       {
       
       PlayAudioStreamForPlayer(playerid,"
  HTML http://yp.shoutcast.com/sbin/tunein-station.pls?id=1543115");
       }
       //Station 4
       if(listitem == 3)
       {
       
       PlayAudioStreamForPlayer(playerid,"
  HTML http://yp.shoutcast.com/sbin/tunein-station.pls?id=616366");
       }
       //Station 5
       if(listitem == 4)
       {
       
       PlayAudioStreamForPlayer(playerid,"
  HTML http://yp.shoutcast.com/sbin/tunein-station.pls?id=1280356");
       }
       //Set Own URL
       if(listitem == 5)
       {
       
       ShowPlayerDialog(playerid,701,DIALOG_STYLE_INPUT,"Input
       URL","Type your URL here.","Play","Cancel");
       }
       //Turn off Radio
       if(listitem == 6)
       {
       StopAudioStreamForPlayer(playerid);
       }
       }
       }
       if(dialogid == 701)
       {
       if(!response)
       {
       SendClientMessage(playerid, COLOR_RED, "You Canceled
       the insert URL dialog.");
       }
       if(strlen(inputtext) < 64 || strlen(inputtext) > 0)
       {
       PlayAudioStreamForPlayer(playerid, inputtext);
       }
       }
       return 1;
       }
       
       CMD:radio(playerid, params&#91;])
       {
       if(!IsPlayerInAnyVehicle(playerid)) return
       SendClientMessage(playerid, COLOR_RED, "You are not in a
       vehicle!");
       ShowPlayerDialog(playerid, 700, DIALOG_STYLE_LIST,
       "Select a Station","{FFFFFF}Hot 108
       Jamz\n{FFFFFF}Pop\n{FFFFFF}Rap\n{FFFFFF}R&B and
       Urban\n{FFFFFF}Rock\n{FFFFFF}Input a URL\n{FFFFFF}Turn Off
       Radio","Ok", "Cancel");
       return 1;
       }
       [/code]
       #Post#: 56--------------------------------------------------
       Re: Admin apply
       By: Eminem Date: August 24, 2013, 8:40 am
       ---------------------------------------------------------
       this radio can be put in server??
       #Post#: 57--------------------------------------------------
       Re: Admin apply
       By: [WTF]Goku Date: August 24, 2013, 8:52 am
       ---------------------------------------------------------
       hmmmmmmmm.... impressive nice
       I will add it in server :)
       Edit: wooh awesome we can also put any song url in game to play
       that song nice :)
       #Post#: 58--------------------------------------------------
       Re: Admin apply
       By: Eminem Date: August 24, 2013, 9:11 am
       ---------------------------------------------------------
       cool then plz add one fast lane form eminem :D
       *****************************************************
   DIR Next Page