If the NetWork a want connect have a password
What I sould do , am using RDS scripts !!Thanks !
|
1
on: August 23, 2010, 01:24:52 am
|
||
| Started by Force - Last post by [RD]Edward | ||
|
echo setting is working perfectly who have the problem is the NetWork , check the NetWork irc.dream-irc.de and tell my what need change and I tell the owner about it !
If the NetWork a want connect have a password What I sould do , am using RDS scripts !!Thanks ! |
||
|
2
on: August 20, 2010, 07:06:21 pm
|
||
| Started by [RD]Edward - Last post by [RD]Edward | ||
|
Well, I am a registered user and I have 99999$ , when I join in the server and spawn, all the time my cash is being setting to 2000$
Please help ![]() |
||
|
3
on: August 20, 2010, 12:51:32 pm
|
||
| Started by [RD]Edward - Last post by Javi | ||
|
Code: function onPlayerSpawn( player ) { Message( player.Name + " spawned as " + GetSkinName( player.Skin ) + "." ); } That shows the message to everyone. If you want to spawn with 0$, do this: Code: function onPlayerSpawn( player ) { Message( player.Name + " spawned as " + GetSkinName( player.Skin ) + "." ); if ( GetPass( player ) == null ) player.Cash = 0; } |
||
|
4
on: August 20, 2010, 05:42:34 am
|
||
| Started by Javi - Last post by [RD]Edward | ||
|
Please, post the buycar command complete ... FIXED AND TESTED
And please, can u make !givecash thanks ! EXELENT SCRIPTS ! |
||
|
5
on: August 20, 2010, 04:55:30 am
|
||
| Started by [RD]Edward - Last post by [RD]Edward | ||
|
Hello all,
Please can someone explain me how add (player.name) hiso spawn (skin name) add that when someone spawn, that mean , example .. [RD]Edward has spawned as (skin name) AND PLEASE, I need add a announce saying the skin name ![]() Please, why when I spawn , spawn with 2000$ ?? am using RDS scripts by javi ! Thanks ! |
||
|
6
on: August 19, 2010, 02:35:19 pm
|
||
| Started by Force - Last post by Thijn | ||
|
First of all, GTFO Re-Read my third statement please.Second, You're Gay Third, why the bot cannont join to the server irc.dream-irc.de ! , in gtanet can join :S Please someone join to /server dream-irc.de and tell me what need do the net to join the BOT ! |
||
|
7
on: August 19, 2010, 02:33:48 pm
|
||
| Started by [RD]Edward - Last post by Thijn | ||
|
No wonder your SQL script isn't working, here's an example of what an SQL 'script' should look like. pownedCode: SELECT Moo FROM MooCakes WHERE Name=Moo |
||
|
8
on: August 19, 2010, 02:07:28 pm
|
||
| Started by [RD]Edward - Last post by Force | ||
|
No wonder your SQL script isn't working, here's an example of what an SQL 'script' should look like.
Code: SELECT Moo FROM MooCakes WHERE Name=Moo |
||
|
9
on: August 19, 2010, 12:31:54 pm
|
||
| Started by Javi - Last post by Javi | ||
|
Code: if ( GetCash( player ) >= GetSQLColumnData( Cost, 0 ).tointeger() ) { QuerySQL( db, "INSERT INTO Vehicles ( ID, Owner, Name ) values ( '" + player.Vehicle.ID + "', '" + player.Name + "', '" + GetVehicleNameFromModel( player.Vehicle.Model ) + "' )" ); PrivMessage( "You just bought a " + GetVehicleNameFromModel( player.Vehicle.Model ) + " for $" + GetSQLColumnData( Cost, 0 ), player ); PrivMessage( "You can now use the following commands: !sellcar, !sharecar, !delsharecar, !getcar", player ); SetCash( player, GetCash( player ) - GetSQLColumnData( Cost, 0 ).tointeger() ); } You have that, change it to this: Code: if ( GetCash( player ) >= GetSQLColumnData( Cost, 0 ).tointeger() ) { QuerySQL( db, "INSERT INTO Vehicles ( ID, Owner, Name ) values ( '" + player.Vehicle.ID + "', '" + player.Name + "', '" + GetVehicleNameFromModel( player.Vehicle.Model ) + "' )" ); PrivMessage( "You just bought a " + GetVehicleNameFromModel( player.Vehicle.Model ) + " for $" + GetSQLColumnData( Cost, 0 ), player ); PrivMessage( "You can now use the following commands: !sellcar, !sharecar, !delsharecar, !getcar", player ); SetCash( player, GetCash( player ) - GetSQLColumnData( Cost, 0 ).tointeger() ); } else PrivMessage( "Error - You don't have enough money.", player ); About the !armour command, that's not my fault if you can't script. I noticed you have a bracket at the top and it shouldn't be there... |
||
|
10
on: August 19, 2010, 07:59:30 am
|
||
| Started by [RD]Edward - Last post by [RD]Edward | ||
|
I want add to my SQL script , the skin name .. show me the skin name with a announce .
and I want change it , function onPlayerSpawn( player ) { MessagePlayer( "You spawned as " + GetSkinName( player.Skin ) + ".", player ); } that say , you spawned as (SKIN NAME) I want this say to all person . (Player name) hiso spawn (player skin). Thanks ! |
||